while sending broadcast I am getting this error ->
{
"error": {
"message": "(#230) Requires pages_messaging_subscriptions permission to manage the object",
"type": "OAuthException",
"code": 230,
"fbtrace_id": "FT08BkMAM77"
}
}
from api "https://graph.facebook.com/v2.11/me/broadcast_messages".
Do I need both page level subscription_messaging_permission as well as App level pages_messaging_subscriptions permission for broadcast?
FYI - My page has subscription_messaging_permission still I am getting above error.
TIA
broadcast
Related
I am trying to get the details of a facebook event:
https://www.facebook.com/events/2007260672817604/
Following the documentation, I tried to GET the info for the event mentioned above
curl -i -X GET \
"https://graph.facebook.com/v15.0/2007260672817604?access_token=..."
But I'm getting the following error:
{
"error": {
"message": "Unsupported get request. Object with ID '2007260672817604' does not exist, cannot be loaded due to missing permissions, or does not support this operation. Please read the Graph API documentation at https://developers.facebook.com/docs/graph-api",
"type": "GraphMethodException",
"code": 100,
"error_subcode": 33,
"fbtrace_id": "AeB6EiSUlbDN7AAzDSoAKxY"
}
Do I need any special permission to be able to do this request? Is it even possible to get the information of public events?
When trying this endpoint: POST /v13.0/<OFFLINE_EVENT_SET_ID>/events , i got the following error:
{ "error": { "message": "(#270) This Ads API request is not allowed for apps with development access level (Development access is by default for all apps, please request for upgrade). Make sure that the access token belongs to a user that is both admin of the app and admin of the ad account", "type": "OAuthException", "code": 270, "fbtrace_id": "xxxxxxx" } }
My app is in Live Mode. And has been approved for ads_management, business_management with Advanced Access.
I hope you guys can help me with this issue.
Thank you a lot.
I'm testing OAuth 2.0 with facebook API, after receiving the authorization code and requesting the access token with the GET https://graph.facebook.com/v3.3/oauth/access_token? i got this response :
{
"error": {
"message": "Error validating verification code. Please make sure your redirect_uri is identical to the one you used in the OAuth dialog request",
"type": "OAuthException",
"code": 100,
"fbtrace_id": "Dl3lYjJLKKy"
}
}
the redirect_uri is the same as the one in the login dialog since i'm just testing on localhost.
Everything was working fine till today,i even tested new callback url using localtunnel but it didn't work at all
I am trying to connect 2 scoped ids of the same user from Messenger and private_replies API call.
When I call ids_for_pages with the private_replies senderId I get this response:
{
"error": {
"message": "(#100) An owning business is required for this request",
"type": "OAuthException",
"code": 100,
"fbtrace_id": "C1wGrChj+O3"
}
}
Any idea what this means?
Maybe this is a bit old, but I faced the same problem today because the error is not clear at all. To solve this, you need to be sure that your page and app are linked or "owned" by the same business, to do that you must go to the business manager:
https://developers.facebook.com/docs/apps/business-manager#update-business
I want get user's app with facebook sdk, i have found facebook document and not get any idea.
Apps like these.
There is no way to get the list of Apps anymore, earlier you could use this endpoint: /me/applications/developer
The result:
{
"error": {
"message": "(#12) User/applications endpoint is deprecated for versions v2.6 and higher",
"type": "OAuthException",
"code": 12,
"fbtrace_id": "Gk8yWCyLdK3"
}
}