FB Graph Error: "(# 100) User must be whitelisted"

I'm calling

https://graph.facebook.com/{the id of one of my app actions} 

and receiving the following response body:

 { "error": { "message": "(#100) User must be on whitelist", "type": "OAuthException", "code": 100 } } 

I am the administrator of this application. Does anyone know what this error means?

+4
source share
3 answers

I got this error today, and the problem is that some of the fields were missing . So do check your URL where you submit the request.

As in my case, I had to make a request

 https://graph.facebook.com/userID/myAppName/ 

Instead, I made a request

 https://graph.facebook.com//myAppName/ 

This should fix your problem, like mine: D

+3
source

I also had this problem, and while I'm not sure what I did to fix it, I think that it associated the action with the objet object (the "Type of connected object" form field).

0
source

Personally, this problem occurred while requesting the endpoint insights :

 https://graph.facebook.com/v2.9/<ad_id>/insights?fields=account_id,account_name,action_values,actions,ad_id,ad_name,adset_id,adset_name,app_store_clicks,buying_type,call_to_action_clicks,campaign_id,campaign_name,canvas_avg_view_percent,canvas_avg_view_time,canvas_component_avg_pct_view,clicks,cost_per_10_sec_video_view,cost_per_action_type,cost_per_estimated_ad_recallers,cost_per_inline_link_click,cost_per_inline_post_engagement,cost_per_total_action,cost_per_unique_action_type,cost_per_unique_click,cost_per_unique_inline_link_click,cpc,cpm,cpp,ctr,date_start,date_stop,deeplink_clicks,estimated_ad_recall_rate,estimated_ad_recallers,frequency,impressions,impressions_dummy,.... 

Finally, find out that the impressions_dummy field was causing the problem, so by removing it from the request, the problem was resolved.

0
source

Source: https://habr.com/ru/post/1414234/


All Articles