当我尝试使用以下代码发布内容时:
FB.login(function(response)
{
if (response.authResponse)
{
FB.api('/me/feed','post',{
name: "Nombre",
link: "http://radio/player/bbc_world_service",
description: "This is test",
message : "xxxxxxxx"
},function(response) {
//
});
}
else
{
//
}
},{scope: 'publish_actions','user_likes'});
它不要求我提供任何权限,只是直接在我的时间范围内发布。据我所知,理论上它必须要求我获得许可。但我尝试通过 facebook explorer 做同样的事情,它确实要求。