I am trying to create a custom action and then post that action to the user timeline. The action is created successfully and I see it in my activity log (as a user) where I have the option to set it as "Shown on timeline".
Is it possible to post it to the wall/timeline or make it available on wall/timeline through javascript graph api?
my custom action is "mcwrapns:place" and the object placed is called marker
so my code looks something like:
FB.api('/me/mcwrapns:place','post',
{marker:'http://mcwrap.code11.com/wrap/'+somemarkerid},
function (response) {
//do something with the response
});
any parameters I can try? or use the returned id to somehow post it?