Facebook 的 Graph API 文档在“更新”部分下列出了application
对象的ios_bundle_id
字段。但是,发送更新所述字段的请求,例如POST
POST: https://graph.facebook.com/v2.3/{application_id}?ios_bundle_id=["com.Company.AppName"]&access_token={app_access_token}
响应此错误消息:
{
"error": {
"message": "(#100) ios_bundle_id cannot be edited using the API. Please use the Developer App to edit settings instead.",
"type": "OAuthException",
"code": 100
}
}
我可以通过 Developer App 页面更新此字段,但就我而言,我需要以编程方式更新此字段。
我已经成功测试了更新其他字段的相同POST
请求,例如app_name
,所以我确定请求结构正确。
有没有人遇到过这个问题,或者类似的?任何建议表示赞赏。