Home:ALL Converter>Why am I getting error sometimes when I try to publish a Custom Open Graph Story?

Why am I getting error sometimes when I try to publish a Custom Open Graph Story?

Ask Time:2015-05-04T17:28:19         Author:user2364708

Json Formatter

Why am I getting this error sometimes when I try to call this command sometimes?

error:

code: 100
message: "(#100) Could not resolve object at URL 405930826276617."
type: "OAuthException"

command:

 FB.api(
   'me/myapp:pass_friend',
   'post',
   {
      level_number: levelNumber,
      person: {
        'og:title': title,
        'og:type': 'myapp:person',
        'og:image': imgUrl
    }
  },
  function (response) {
    if (response && !response.error) {
        console.log('[publishPassFriend] API response', response);
    } else {
        console.error('[publishPassFriend] API error', response);
    }
  }
);

Author:user2364708,eproduced under the CC 4.0 BY-SA copyright license with a link to the original source and this disclaimer.
Link to original article:https://stackoverflow.com/questions/30026743/why-am-i-getting-error-sometimes-when-i-try-to-publish-a-custom-open-graph-story
yy