Has anyone been able to customize a Facebook feed post by using parameters like from, to, actions, etc, as documented here:
http://developers.facebook.com/docs/reference/api/post/
For example HTTP POSTing this string:
message=mymessage&access_token=mytokenstring
to
https://graph.facebook.com/123456/feed works fine and posts to your feed. Similarly parameters like picture, description, etc all work too.
But I can't get the more complicated parameters to work. Does anyone know the proper formatting? My guess below, and similar combinations, doesn't work at the moment:
message=mymessage&access_token=mytokenstring&from={"name":"Bob", "id":"123456"}
thanks for any help!