我想检查一下人们是否喜欢我的粉丝网,所以我不得不在Facebook上创建应用。我也在Facebook上联系了自己。在我的代码下面:
require_once('facebook/facebook.php');
$facebook = new Facebook(array(
'appId' => '574707409300181',
'secret' => 'xxxxxx',
'cookie' => true));
$user = $facebook->getUser();
if($user) {
try {
$our_page_id = '263807853767281'; // This should be string
$user_is_fan = false;
$likes = $facebook->api( '/me/likes?fields=id' );
foreach( $likes['data'] as $page ) {
if( $page['id'] === $our_page_id ) {
$user_is_fan = true;
echo 'YOU LIKE FANPAGE!';
}
}
}
catch (FacebookApiException $e) {
$user = null;
}
}
我的问题 - 当用户按下"喜欢" Facebook上的按钮可以显示允许我接受我的应用程序的窗口吗?我问,因为我不知道如何推广我的应用......也许有更好的解决方案?简而言之 - 当用户喜欢我的粉丝时,他必须接受权限。 :) 谢谢你的回复!