2012-11-07 60 views
1

我試圖用fb.api邀請用戶在Facebook的事件:Facebook的事件+ RSVP出席

FB.api('/345345345345453/attending', 'post', function (data) { 
        console.log(data); 
       }); 

我也試過,但沒有幫助過:

FB.api('/345345345345453/attending&access_token + '/ACCESSTOKEN'', 'post', function (data) { 
        console.log(data); 
       }); 

我得到一個消息在我的日誌中說:

"(#100) User must be able to RSVP to the event." 

任何人都可以幫忙。謝謝。

+0

這應該在這個特定的情況下工作。它也適用於我。 http://stackoverflow.com/questions/7312964/checking-for-event-rsvp-status-and-showing-disabled-enabled-rsvp-button – webjunkie

回答

0

好的,我創建了一個'SECRET'的Facebook事件。

1

如果你想邀請用戶,你應該使用invited而不是attendingSee the documentation。使用attending將自動將其標記爲參加您的活動。

+0

感謝您指出,實際上他們會點擊我的應用程序中的加入按鈕,所以是的,它是參加而不是實際邀請。 – k80sg