0

嗨,我最近首先修改了我的应用程序,它只需要基本信息。来自用户的许可,但现在我也想要流发布许可。因此,如果用户未授予流发布权限,我会检查我的索引页面,我只是向他显示权限对话框,如下所示:

<?php $permission = $facebook->api(array('method' =>   'users.hasAppPermission','ext_perm'=>'publish_stream','uid'=> $uid));
   if($permission != '1')
   {
    echo "<script type='text/javascript'>

                var dialog = {
                    method: 'permissions.request',
                    perms: 'publish_stream'
                };  

            FB.ui(dialog,null);
        </script>";
   }
?>

此代码正确显示权限框,但问题是当用户授予权限时,他将重定向到我的画布 url(服务器页面上的 url)而不是画布页面(即http://apps.facebook.com/xyz)。为了解决这个问题,我将 redirect_uri 添加到它作为

   var dialog = {
       method: 'permissions.request',
       perms: 'publish_stream',
       redirect_uri: 'http://apps.facebook.com/xyz'
   };

但它仍然无法正常工作。

请帮助我如何解决这个问题。

4

1 回答 1

4

试试这个:

<?php
$loginUrl = $facebook->getLoginUrl(array(
    "scope" => "publish_stream",
    "redirect_uri" => "http://apps.facebook.com/xyz"
));

$isGranted = $facebook->api(array(
    "method"    => "users.hasAppPermission",
    "ext_perm"   => "publish_stream",
    "uid"       => $uid /* The user ID of the user whose permissions
                         * you are checking. If this parameter is not
                         * specified, then it defaults to the session user.
                         */
));
if($isGranted !== "1")
    echo("<script> top.location.href='" . $loginUrl . "'</script>");
?>

您还可以使用 FQL 来检查权限。更多相关信息可以在这里找到。


更新:
Facebook 引入了权限连接,现在可以使用它来代替旧的 REST API:

$permissions = $facebook->api("/me/permissions");
if( array_key_exists('publish_stream', $permissions['data'][0]) ) {
    // Permission is granted!
    // Do the related task
    $post_id = $facebook->api('/me/feed', 'post', array('message'=>'Hello World!'));
} else {
    // We don't have the permission
    // Alert the user or ask for the permission!
    header( "Location: " . $facebook->getLoginUrl(array("scope" => "publish_stream")) );
}
于 2011-02-28T12:33:20.360 回答