我知道您可以通过JS SDK将照片上传到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!请帮忙!