Ok, what I want is to create a new album for an subpage of my account. I think, it is almost the same from Add an Album to Page using API (php).
I have one main page with a lot of subpages assigned.
For the beginning I'am using the developer console from https://developers.facebook.com/tools/explorer/
I want to see all my subpages
https://graph.facebook.com/uid/accounts
shows me a lot of pages
I want to create now a new album for a specific page.
I grab the page and the assigned albums via
https://graph.facebook.com/id_of_the_page/albums
When I now want to create a new album I´am starting with a post request to
https://graph.facebook.com/id_of_the_page/albums
with an assigned name param
The result is an error_message from facebook with
Uncaught OAuthException: (#100) Invalid ID for album owner
The answer from Add an Album to Page using API (php) tells me to use the token from the subpage as a param. But when I check my pages all of them have the same token?
I've got the same error when using fb_graph https://github.com/nov/fb_graph/ via
fb = FbGraph::Page.new(uid, {:access_token => token}).fetch
fb.album!( :name => 'My new album')
The last call give me the same error as above.
What me dazzle is, that I can post messages to my feed of the subpage, without any errors.
And of course I can create albums and events for my main_page.
So what I'am doing wrong?
EDIT and extension
so, after authenticate via FbGraph::Page.new(uid, {:access_token => token}).fetch
I was able to create a new album.