你好我设置了如下所示的新闻Facebook应用程序,但是当我调用auth对话框时,不要求电子邮件,所以我没有得到任何信息..
有什么想法吗?
我的FB请求:
$data['get'] = array(
'access_token' => $access_token,
'locale' => 'fr_FR',
'req_perms' => 'email,user_about_me,user_birthday,user_location,publish_actions',
'ext_perms' => 'publish_stream',
'fields' => 'email,name,picture,first_name,last_name,gender,link,birthday,email,location'
);
PermissionDialog不包含电子邮件和req_prems ..为什么? 而且预览当前对话框与预览参考对话框(包含电子邮件等)不同。 有什么想法吗?
答案 0 :(得分:0)
您从事哪些文档?需要传递给Auth对话框以请求其他权限的参数在2011年10月更改为“范围”
有关权限信息,请参阅https://developers.facebook.com/docs/authentication/permissions/;有关如何进行身份验证,请参阅https://developers.facebook.com/docs/authentication/
如果您正在进行服务器端身份验证,则将用户重定向到的URL为:
https://www.facebook.com/dialog/oauth/?
client_id=YOUR_APP_ID
&redirect_uri=YOUR_REDIRECT_URL
&state=YOUR_STATE_VALUE
&scope=COMMA_SEPARATED_LIST_OF_PERMISSION_NAMES
然后使用oauth端点交换令牌的代码(所有这些都包含在上面的文档中) - 您的服务器使用以下参数请求:
https://graph.facebook.com/oauth/access_token?
client_id=YOUR_APP_ID
&redirect_uri=YOUR_REDIRECT_URI
&client_secret=YOUR_APP_SECRET
&code=CODE_GENERATED_BY_FACEBOOK_AND_SENT_TO_YOUR_APP_IN_EARLIER_STEP