0

FacebookAPIを介してイベントを作成しようとしています。ただし、次のエラーが発生し続けます。

#100無効なパラメータ

これはコードです:

    FB.api("/me/events", "post", {
        name: "Test Event",
        category: 1,
        subcategory: 1,
        host: "You",
        description: "Details",
        location: "London",
        start_time: "2012-10-05 15:00",
        end_time: "",
        privacy: "SECRET"
    }, function(response) {
        if (!response || response.error) {
           alert("Sorry this event could not be created");
           console.log(response.error.message);
       } else {
           alert("Created!");
       }
   });
4

1 に答える 1

0

問題を修正しました。これらはイベントを作成するためのパラメータです。

name: "Test event"
description: "The details"
location: "London"
start_time: "2012-10-05"
end_time: ""
privacy_type: "SECRET"
于 2012-09-11T15:06:09.203 に答える