I'm driving myself to despair trying to get an album added to a facebook page using the C# SDK..
I think my code is OK as I can successfully create an album on my own profile page through the SDK and API. So, I expect something's getting confused with my access tokens and permissions etc.
My c# code is here:
string accessToken = "TOKEN HERE";
FacebookClient facebookClient = new FacebookClient(accessToken);
var albumParameters = new Dictionary<string, object>();
albumParameters["message"] = "new message";
albumParameters["name"] = "new name";
facebookClient.Post("/412639422128107/albums", albumParameters);
The error Im getting is: (OAuthException - #1) An unknown error has occurred.
I've read loads of posts on here and elsewhere on the web about getting the page's access token. Which I'm pretty sure I'm doing right -
- I go to this page: https://developers.facebook.com/tools/explorer
- I type in "me/accounts"
- I see a couple of pages i'm the admin of, and grab the access token that corresponds with my page id that i'm trying to add the album to (412639422128107)
I check the permissions on this access token by going here: https://developers.facebook.com/tools/debug/access_token?q=
I see that I've got the following permissions: create_event, create_note, manage_pages, photo_upload, publish_actions, publish_stream, read_stream, share_item, status_update, video_upload
But, I'm clearly not doing something quite right as it's not working! Please could anyone point me in the right direction?
Thanks loads in advance :)