skip to Main Content

How to get whole Facebook friends list from api

Is there a way to get the whole Facebook friends list using an api! I've tried a lot of thing and here's my shot: FacebookClient f = new FacebookClient(access_token); f.IsSecureConnection = true; dynamic friendlist = await f.GetTaskAsync(@"https://graph.facebook.com/me/friendlists?access_token="+access_token); t.Text = JsonConvert.SerializeObject(friendlist);…

VIEW QUESTION

Facebook New Strict App Settings not working for fboauth

Summary of the problem: the "Enforce HTTPS for OAuth Redirects and SDK APIs" option in Facebook Login Settings, which cannot be disabled. According to the Facebook help (https://developers.facebook.com/docs/facebook-login/security): This setting requires HTTPS for OAuth Redirects and pages getting access tokens…

VIEW QUESTION

Facebook marketing api access non existing field

I am trying to access campaigns of the facebook account. Using python lib: https://github.com/facebook/facebook-python-ads-sdk Receive error: (#100) Tried accessing nonexisting field (campaigns) on node type (AdAccount) Url: https://graph.facebook.com/v2.11/{account_id}/campaigns Everything worked fine for months. Now, even facebook page for this url…

VIEW QUESTION
Back To Top
Search