我知道您可以通过 JS SDK 提供的外部照片 URL 将照片上传到 facebook。但是如何将本地托管的照片上传到 Facebook?如果我使用我的 IP 地址,我仍然会收到此错误:
"http://10.0.1.9:9914/media/images/templates/cover/851x315_FLAME.png is an internal url, but this is an external request
代码:
var data = array();
data['message'] = 'hello world';
data['url'] = 'http://10.0.1.9:9914/media/images/templates/cover/851x315_FLAME.png';
FB.api('/me/photos', 'post', data, function(response){
if (!response || response.error) {
//alert('Error occurred');
} else {
//alert('Post ID: ' + response.id);
}
});
我想要的只是能够使用 JS SDK 将本地托管的照片上传到 FB!请帮忙!