Reputation: 11
Code:
Dictionary<string, object> parameters = new Dictionary<string, object>();
parameters.Add("access_token", page.acces_token);
dynamic p = fb.Get(page.id + "/tabs", parameters);
Error:
(OAuthException) An access token is required to request this resource.
But I am providing an access token... What seems to be the problem?
Thank you!
Upvotes: 0
Views: 256
Reputation: 11
If you copied and pasted that code, then the use of "acces_token" instead of "access_token" may be your issue.
Upvotes: 1