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 have successfully posted a post on my own profile through an iPhone application I am making. However the post is only visible to me, how do I fix the privacy settings? I have done the following. I don't know if the jsonWriter-part is correct though, I found it in a Video project at Facebook.

NSDictionary *dictPrivacy = [NSDictionary dictionaryWithObjectsAndKeys:@"ALL_FRIENDS", @"value", nil];
SBJSON *jsonWriter = [[SBJSON new] autorelease];
NSString *strPrivacy = [jsonWriter stringWithObject:dictPrivacy];

NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
                                   name, @"name",
                                   message, @"message", 
                                   picture, @"picture",
                                   caption, @"caption",
                                   link, @"link",
                                   description, @"description", 
                                   strPrivacy, @"privacy", nil];
share|improve this question

1 Answer

up vote 1 down vote accepted

You can modify value parameter to these Values EVERYONE, ALL_FRIENDS, NETWORKS_FRIENDS, FRIENDS_OF_FRIENDS.

Hope this would help.

PS : Further details can be find out here http://developers.facebook.com/docs/reference/api/post/

share|improve this answer

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.