我创建了一个Facebook应用,并且一直在使用Javascript SDK创建活动。我的问题是我无法将照片附加到活动中。我已经看过使用PHP SDK的例子,但我想知道是否可以用 Javascript / JQuery 来做这个?
这是我尝试过的,它会创建事件但不会附加图像:
FB.api('/'+userID+'/events', 'post', {
name:'My Event',
start_time: startDate,
end_time: endDate,
description: 'The test event',
privacy_type: 'SECRET',
picture: 'http://farm4.static.flickr.com/3415/3570338576_c6d4e2d930.jpg'
}, function(response){
if (!response || response.error) {
console.log(response.error);
} else {
console.log(response);
}
});