我想向用户添加到本网站时,活动注册也会在facebook上订阅该活动 系统已经要求“create_event”额外权限,我没有找到如何在用图形api登录后订阅用户到特定事件。我怎么能这样做?
谢谢,
乔
答案 0 :(得分:4)
它记录在event
对象页面中:
// RSVP to an Event
curl -d "access_token=XXX"
https://graph.facebook.com/EVENT_ID/{attending|declined}
因此您需要授予rsvp_event
权限
使用php-sdk的示例:
$facebook->api("/EVENT_ID/attending", "post", array("access_token" => "XXXXX"));