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 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?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.