I have an android application that creates an image.
I would add this image in an album of my facebook page (and not in my personal wall).
I see that i must use the app token.
i get the app token with:
https://graph.facebook.com/oauth/access_token?
client_id=MY_APP_ID
&client_secret=MY_APP_SECRET
&grant_type=client_credentials
And then with this app token I think that i must use this code:
String appToken="MY_APP_TOKEN";
facebook.setAccessToken(appToken);
Bundle parameters = new Bundle();
parameters.putString("caption", "This is a message test...");
byte[] ImageBytes=...;
parameters.putByteArray("photo", ImageBytes);
String response2=facebook.request("ALBUM_ID/photos", parameters, "POST");
This code return this error:
A user access token is required to request this resource
Then i must not use app token? Thanks