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'm trying to integrate Facebook sharing into a webpage using this code edited from their official developer tutorial, but I'm not having any luck.

function postToFacebook(item_id)
{

  FB.api(
    '/me/completeset:display',
    'post',
    { item: 'http://completeset.us/item/'+item_id },
    function(response) {
       if (!response || response.error) {
          alert('Error occured');
       } else {
          alert('Share was successful! Action ID: ' + response.id);
       }
    }); //End api
}

I've got the app set up, with an "item" object and the "defined" action defined. I haven't been able to submit the action yet though, because I haven't been able to post anything with it yet. I've verified that the item_id is being passed in correctly, and I've debugged the url using their debugging tool. When I call this function I'm getting unknown path components/ completeset:display. I haven't been able to find much information on this error, so I'm wondering: what are the causes, and how might I be able to fix it?

share|improve this question
Where did you find the completeset:display path? it is not in the docs as far as i can remember... but maybe im wrong – Ties Jul 8 '12 at 16:53
completeset is the namespace of my app and display is the action I'm trying to invoke. That is the proper syntax, is it not? – jaimerump Jul 8 '12 at 16:54
yes it is... did you read this? stackoverflow.com/questions/8286897/… – Ties Jul 8 '12 at 17:01
What do you know, turns out it was a mismatch in the names. No idea why though, I didn't change the action or anything. – jaimerump Jul 8 '12 at 17:14
Case closed! :) – Ties Jul 8 '12 at 17:20

1 Answer

up vote 0 down vote accepted

The names mismatched. The getCode link for the action on facebook displayed the name of the action as being show_off for some reason. It was the same problem as the linked question. I experimented with the app backend and found that if you create an action with one name and then change the name of it, it will display with the new name but you must still reference it using the old name in the code.

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.