Hi, I found in graph Api documentation and it says I can create an App with sending post with that : "You can make a POST request to owned_apps edge from the following paths: /{business_id}/owned_apps" and I am try to send a request like that :
"curl -X POST "https://graph.facebook.com/v19.0/{business_id}/owned_app"
But the postman returns an error :
{ "error": { "message": "(#100) The parameter app_id is required", "type": "OAuthException", "code": 100, "fbtrace_id": "AjGF2jdn5B-bNnjZOhXVKmp" } }
But in documentation, there is no need thee app_id. Actually, the app_id auto-generated from facebook when the app creation process done.
How can create an app with that way? If it is helps, I am adding the documantation links.
https://developers.facebook.com/docs/marketing-api/reference/business/owned_apps/v19.0
Thanks.