Currently i can post news feed updates using objectids of some of my web pages to facebook users who have liked those pages.
Now i'm trying to test the new open graph and custom actions to do the same; posting updates to users who made a specific action on my web site. But even though i get publish_actions permission with my app, and using my facebook account and some dummy test user accounts for my app (i know that until timeline is released, only devs and test users can use said permission), when i try to post i get this error message:
"{"error":{"message":"(#200) Requires extended permission: publish_actions","type":"OAuthException"}}"
.
I also changed my app type to Games so i can properly get publish_actions permission from auth dialog.
Any ideas that can help me with this? Or do i just have to wait until timeline is released before i can test new open graph posting properly?
Edit: request sent contains these parameters;
to: https://graph.facebook.com/feed
["access_token": "given access token",
"message": "post message",
"caption": "post caption",
"picture":"picture url",
"link": "link to post",
"description": "post description",
"ids": "object ids separated by commas"]
Edit2: I ask for permissions via Add to timeline button:
<fb:add-to-timeline show-faces="true" mode="button" perms="offline_access,publish_actions,publish_stream"></fb:add-to-timeline>