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'm not sure what I'm missing here, but despite my best efforts I can't figure out why the following query string parameters (urldecoded) is somehow losing the post privacy settings.

message=We hope you enjoy your xxxx from xxxxxx
picture=http://app.xxxxx.me/_img/_product/thumb/1019.jpg
link=http://app.xxxxxx.me/object/xxxxx/1019/
name=Sample Post Name
description=This is a sample description message
properties={"Privacy":"Only You and xxxx can see this"}
actions={"name":"Track This Order","link":"http:\/\/apps.facebook.com\/xxxxxxx\/orders?id=3ff0f70e39c454acb800342b550b550f"}
privacy={"description":"XXXXX only","value":"CUSTOM","friends":"SOME_FRIENDS","allow":1111111111}  (where 1111... is a valid user numeric ID)

My goal is to post to the target user's wall (this is supposedly allowed, as specified in the Open Graph POST documentation, privacy, "note") with specific privacy settings.

More specifically, only the user and one other friend should be able to view the post.

I've tried virtually every JSON encoding variation for privacy, yet for some reason although the rest of the post parameters work perfectly, privacy does not.

Any thoughts?

Thanks!

share|improve this question
What permissions did you request from the user? Also you can play around with the graph API using the API Explorer tool. I find it useful to do things there until I know how to do it, then I implement and test it in the code. – DMCS Jan 1 '12 at 4:30
many, but relative to this query, yes read_stream and stream_publish are authorized. As for the graph explorer, no matter what ID I put in to test (my username, FB ID #, 'me') it always returns (#100) Can only call this method on valid test users for your app. Obviously I'm authenticated on the app since I'm logged into the developer app, and it seems to function fine in the browser, so I'm not quite sure what's going on there – Julian Jan 1 '12 at 5:00
Try it out via the graph API Explorer tool. Does posting to the authenticated user's own feed work as expected with those permissions? – DMCS Jan 1 '12 at 5:01
Yeah, everything about the post works perfectly (even embedded objects like actions and properties) except for the privacy permissions. When the post shows up, it is always set to a default of "Everyone" – Julian Jan 1 '12 at 5:03
Opps, I read your question as you are trying to post to a friend's wall, not to the user's wall. Sorry for my misunderstanding. Do you get the same results using the Graph API Explorer? if so, then it's a Facebook bug (code or documentation). If not, then it's an API bug. – DMCS Jan 1 '12 at 5:08
show 3 more comments

1 Answer

Bug report filed on Facebook

http://developers.facebook.com/bugs/221305621283801

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.