How to set album privacy on Facebook using Graph API?

I would like to know if it is possible to set the privacy setting for a specific Facebook album with RestFB Java library?

Many thanks,

Hi,

Anthony

+5
source share
3 answers

You can set privacy options when creating an album.

Currently, you cannot update the settings or delete an existing album through the API, if you just want to delete and recreate it as work. http://bugs.developers.facebook.net/show_bug.cgi?id=17111

, POST, , JSON, Post : https://developers.facebook.com/docs/reference/api/post/

+2
+1

curl https://graph.facebook.com/me/albums -F 'access_token = xxx' -F 'name = my album' -F 'privacy = {"value": "ALL_FRIENDS"}

+1
source

All Articles