是否可以使用FB登录网站登录并让用户在获得许可后发布给他的朋友?通过“允许”我的意思是朋友必须批准这个职位。这可能吗?
答案 0 :(得分:0)
是的,这是可能的。我们的工作中有一个应用程序,每周都会在用户的个人资料中发布。
来自facebook doc(https://developers.facebook.com/docs/reference/javascript/FB.api/):
如果您的经过身份验证的用户具有publish_stream权限,并且想要将故事发布到其Feed:
var body = 'Reading JS SDK documentation';
FB.api('/me/feed', 'post', { message: body }, function(response) {
if (!response || response.error) {
alert('Error occured');
} else {
alert('Post ID: ' + response.id);
}
});