Facebook's Graph API documentation lists the application
object's ios_bundle_id
field under the "Updating" section. However, sending a POST
request to update said field, e.g.
POST: https://graph.facebook.com/v2.3/{application_id}?ios_bundle_id=["com.Company.AppName"]&access_token={app_access_token}
Responds with this error message:
{
"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
}
}
I am able to update this field through the Developer App page, but in my case, I need to update this field programmatically.
I have successfully tested that same POST
request to update other fields, e.g. app_name
, so I am certain the request is structured properly.
Has anyone encountered this issue, or similar? Any suggestions are appreciated.