Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am developing a winform (desktop) application in C#. How can I create an Album using the Facebook API and also set its privacy as "ONLY ME"?

share|improve this question

1 Answer

up vote 0 down vote accepted

This is described for albums connection of user. You need to use privacy field.

http://graph.facebook.com/me/albums?name=Demo&privacy={"value":"SELF"}&method=post

Beware:

Privacy Policy: Any non-default privacy setting must be intentionally chosen by the user. You may not set a custom privacy setting unless the user has proactively specified that they want this non-default setting.

For more details on albums privacy settings read documentation for albums connection.

share|improve this answer
Thanks a lot dear – Mohammad Salmaan Mar 26 '12 at 8:46
@MohammadSalmaan, welcome to Stack Overflow ;) Mark the answer as accepted if it was helpful to you. – Juicy Scripter Mar 26 '12 at 10:08

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.