1

我正在使用 Graph API Explorer 来尝试解决如何在 iOS 应用程序的 Objective-C 中真正编码之前创建用户事件。

我获得了一个包含user_event,publish_actionscreate_event权限的身份验证令牌。

我正在使用set to和set to的参数POST发出请求https://graph.facebook.com/12345678/eventsnameTester 2start_date2013-06-27

作为回应,我得到

{
  "error": {
    "message": "(#100) Invalid parameter", 
    "type": "OAuthException", 
    "code": 100
  }
}

我看不出我做错了什么。任何帮助将非常感激。

谢谢

安德鲁

4

1 回答 1

3

这是因为您需要使用start_time而不是start_date.

文档参考: https ://developers.facebook.com/docs/reference/api/event/

于 2012-12-11T02:21:53.443 回答