我需要一些帮助来尝试创建一个Facebook离线事件集 . 所以我在facebook开发者上关注这个指南:

https://developers.facebook.com/docs/marketing-apis/offline-conversions/v2.7

我坚持第1步)创建一个离线事件集 . 我能够设置测试Facebook应用程序,创建Facebook业务经理,并在业务经理中创建系统管理员用户和有效令牌 .

但是,当我使用我的业务经理Id,生成的令牌和一些测试数据来调用API时:

{
  "name": "offline test"
}

我收到了这个错误:

{
    "error": {
    "message": "Permissions error",
    "type": "OAuthException",
    "code": 200,
    "error_subcode": 1815062,
    "is_transient": false,
    "error_user_title": "Account Permission Missing",
    "error_user_msg": "Ad account ************* does not have permission to access this endpoint",
    "fbtrace_id": "******"
    }
}

似乎我没有权限,因为生成的令牌是在管理系统用户上创建的,这真的很奇怪 . 一切都应该是正确的 .

谁能给我一些见解?