1

当用户单击按钮时,如何创建一个创建相册并将图像从 url 发布到它的应用程序以及如何设置 publish_stream 权限

下面的代码不起作用

FB.api('/PAGE_ID/photos', 'post', {
  url: 'http://example.com/image.png',
  message: 'Upload demo'
}, function(response){
  if (response && response.id)
    console.log('Photo uploaded', response.id);
});
4

1 回答 1

1

你的第一部分很不清楚。对于 publish_stream ,您可以使用 javascript API 作为-

FB.login(function(response) 
        {
           if (response.authResponse) 
           {
                          // success
           } 
           else 
           {
                         // fail

           }
         },{scope: 'publish_stream,email'}
      );
于 2012-12-13T13:07:13.260 回答