我已经创建了一个应用程序。在GO to App弹出后,它不会提示用户在墙上发布权限。我已经在开发人员帐户中为我的应用程序提供了以下设置。
User & Friend Permissions: email,user_activities,user_likes,publish_actions
Extended Permissions: publish_stream,read_stream,offline_access当我单击"Preview Login Dialog“链接时,它在"GO to App”弹出窗口中显示以下权限。
THIS APP WILL RECEIVE:
Your basic info
Your email address
Your activities
Your likes但是,当我第一次访问应用程序时,它只显示了以下权限。
THIS APP WILL RECEIVE:
Your basic info由于这个原因,我不能很好地发帖。我已经检查过了。
同样,我已经检查了用户的应用程序设置页面。用户帐户没有如下所示的选项。
* Post on your behalf
* Access posts in your news feeds怎么啦?我花了3个多小时才弄清楚。
发布于 2013-02-09 01:49:27
确保在调用登录对话框的方法的scope参数中设置了预期的权限:
FB.login(function(response) {
// handle the response
}, {scope: 'email,user_activities,user_likes,publish_actions,etc...'});以防万一,为了确保您在执行某些需要的操作之前拥有所需的权限,请尝试处理已撤销的预留,正如我所指出的here。
顺便说一句,请确保只请求您的应用程序真正需要的权限。你可以用这么多的权限吓到用户。;)
https://stackoverflow.com/questions/14777720
复制相似问题