1

我创建了一个 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);
    }

});
4

0 回答 0