Stan
Stan

Reputation: 26511

Is it possible to make FB Application albums private by default?

I am uploading some photos by Graph API and I want to make my application album private by default so that it won't spam the news feed of other users. Or maybe there is an option for it to not post every upload on news feed?

Upvotes: 0

Views: 264

Answers (2)

Igy
Igy

Reputation: 43816

To upload photos without the corresponding news feed story, there's a no_story parameter you can include when uploading the photo

This is documented in the 'photos' part of the 'User' Graph API documentation

Upvotes: 0

Jashwant
Jashwant

Reputation: 29005

Yes, you have privacy parameter. I haven't tested it with photos yet but it works fine with albums and posts. Pass the privacy object along with access_token or other fields.

http://developers.facebook.com/docs/reference/api/post/

See the privacy field in above link.

Upvotes: 1

Related Questions