установил
https://github.com/kartik-v/yii2-social
поставил
'modules' => [
'social' => [
// the module class
'class' => 'kartik\social\Module',
// the global settings for the disqus widget
'disqus' => [
'settings' => ['shortname' => 'DISQUS_SHORTNAME'] // default settings
],
// the global settings for the facebook plugins widget
'facebook' => [
'app_id' => 'FACEBOOK_APP_ID',
'app_secret' => 'FACEBOOK_APP_SECRET',
],
// the global settings for the google plugins widget
'google' => [
'clientId' => 'GOOGLE_API_CLIENT_ID',
'pageId' => 'GOOGLE_PLUS_PAGE_ID',
'profileId' => 'GOOGLE_PLUS_PROFILE_ID',
],
// the global settings for the google analytic plugin widget
'googleAnalytics' => [
'id' => 'TRACKING_ID',
'domain' => 'TRACKING_DOMAIN',
],
// the global settings for the twitter plugins widget
'twitter' => [
'screenName' => 'TWITTER_SCREEN_NAME'
],
],
// your other modules
]
на странице подключил
use kartik\social\FacebookPlugin;
и пробую выводить
<?= FacebookPlugin::widget([
'type'=>FacebookPlugin::SHARE,
'settings' => [
'url' => Url::to(['site/new'] , TRUE),
'size'=>'small',
'layout'=>'button_count',
'mobile_iframe'=>'false',
]]);?>
<?=FacebookPlugin::widget(['type'=>FacebookPlugin::LIKE, 'settings' => [
'size'=>'large',
'href' => Url::to(['site/new', 'id' => $new->id]),
'layout' => 'button_count',
]]);?>
кнопки есть, но когда нажимаю появляется окно фейсбука и потом сразу исчезает ...
в консоли некоторые ошибки: