I'm trying to work with Facebook Open Graph. I've defined an app. I've set up an action and an object ("cook" and "recipe"). I've put up a web page for one of the objects, which includes all the metadata required. I'm now trying to post some test items on my wall using cURL (with the sample commands that it gives you when you click Get Code by the action on the open graph setup page).
When I just issue a command to "cook" a "recipe", without also adding a comment or anything, then the command seems to work, and I can view the returned ID in the debugger. On my profile, the item appears in the right-hand sidebar, but not on my wall or in my own newsfeed.
When I issue a command to cook a recipe, and also give it a user-generated photograph, again the command seems to work and returns an ID, again I can view that ID in the debugger and it looks fine, but this one doesn't appear anywhere: not in the sidebar, not in the news feed, not on my wall.
Permissions-wise, I'm using my own user account, which is an admin account for the app. On the App Center tab of the developer site, my app has publish_actions under "User & Friend Permissions" in the "Permissions" section.
Here's the command I'm using:
curl -F 'access_token=<token>'
-F 'recipe=<urlOfRecipe>'
-F 'image[0][url]=<urlOfUserImage>'
-F 'image[0][user_generated]=true'
-F 'message=Look at my cake!'
'https://graph.facebook.com/me/mynamespace:cook'
So what's the deal? Is it not working because I'm in sandbox mode? (I assumed that sandbox mode stuff would still show up to me, just not to anyone else.) Is it because the action hasn't been approved yet? Or am I doing something wrong?
Does it make a difference that my personal profile is not using Facebook Timeline?
How can I know that, when this is all live, my app will be able to post things that will appear on users' news feeds?