FBInstant.shareAsync( ) failed with 500












2















I'm doing the sharing in my instant game.
I'm firing next req from the game:



FBInstant.shareAsync(
{
intent: 'REQUEST',
image: 'image-encoded-here',
text: 'Edgar just played BASH for 9 points!',
data: { myReplayData: 'message sent' },
}
).then( function()
{
console.log("sharing is done");
})
.catch( function(err)
{
console.log('failed to share: ' + err.code + " :: " + err.message);
});


but I'm receiving 500-error:



https://www.facebook.com/games/quicksilver/share_score/?dpr=2 500 ()
failed to share: NETWORK_FAILURE ::



can anyone help with solving this?










share|improve this question



























    2















    I'm doing the sharing in my instant game.
    I'm firing next req from the game:



    FBInstant.shareAsync(
    {
    intent: 'REQUEST',
    image: 'image-encoded-here',
    text: 'Edgar just played BASH for 9 points!',
    data: { myReplayData: 'message sent' },
    }
    ).then( function()
    {
    console.log("sharing is done");
    })
    .catch( function(err)
    {
    console.log('failed to share: ' + err.code + " :: " + err.message);
    });


    but I'm receiving 500-error:



    https://www.facebook.com/games/quicksilver/share_score/?dpr=2 500 ()
    failed to share: NETWORK_FAILURE ::



    can anyone help with solving this?










    share|improve this question

























      2












      2








      2


      1






      I'm doing the sharing in my instant game.
      I'm firing next req from the game:



      FBInstant.shareAsync(
      {
      intent: 'REQUEST',
      image: 'image-encoded-here',
      text: 'Edgar just played BASH for 9 points!',
      data: { myReplayData: 'message sent' },
      }
      ).then( function()
      {
      console.log("sharing is done");
      })
      .catch( function(err)
      {
      console.log('failed to share: ' + err.code + " :: " + err.message);
      });


      but I'm receiving 500-error:



      https://www.facebook.com/games/quicksilver/share_score/?dpr=2 500 ()
      failed to share: NETWORK_FAILURE ::



      can anyone help with solving this?










      share|improve this question














      I'm doing the sharing in my instant game.
      I'm firing next req from the game:



      FBInstant.shareAsync(
      {
      intent: 'REQUEST',
      image: 'image-encoded-here',
      text: 'Edgar just played BASH for 9 points!',
      data: { myReplayData: 'message sent' },
      }
      ).then( function()
      {
      console.log("sharing is done");
      })
      .catch( function(err)
      {
      console.log('failed to share: ' + err.code + " :: " + err.message);
      });


      but I'm receiving 500-error:



      https://www.facebook.com/games/quicksilver/share_score/?dpr=2 500 ()
      failed to share: NETWORK_FAILURE ::



      can anyone help with solving this?







      facebook facebook-instant-games






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Jul 6 '18 at 14:01









      Dmitry KovalchukDmitry Kovalchuk

      112




      112
























          2 Answers
          2






          active

          oldest

          votes


















          -1














          Try removing the "," from the line



          data: { myReplayData: 'message sent' },
          data: { myReplayData: 'message sent' }





          share|improve this answer


























          • -1; trailing commas in object literals are legal in modern JavaScript, so there's no need to remove this one, and there's no plausible way that one could cause a 500 error from a remote server anyway.

            – Mark Amery
            Nov 4 '18 at 16:52





















          -2














          Look at your "image" parameter in the shareAsync(). You must send a Base64 url or it will go wrong.






          share|improve this answer























            Your Answer






            StackExchange.ifUsing("editor", function () {
            StackExchange.using("externalEditor", function () {
            StackExchange.using("snippets", function () {
            StackExchange.snippets.init();
            });
            });
            }, "code-snippets");

            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "1"
            };
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function() {
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled) {
            StackExchange.using("snippets", function() {
            createEditor();
            });
            }
            else {
            createEditor();
            }
            });

            function createEditor() {
            StackExchange.prepareEditor({
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader: {
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            },
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            });


            }
            });














            draft saved

            draft discarded


















            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f51212152%2ffbinstant-shareasync-failed-with-500%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            2 Answers
            2






            active

            oldest

            votes








            2 Answers
            2






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            -1














            Try removing the "," from the line



            data: { myReplayData: 'message sent' },
            data: { myReplayData: 'message sent' }





            share|improve this answer


























            • -1; trailing commas in object literals are legal in modern JavaScript, so there's no need to remove this one, and there's no plausible way that one could cause a 500 error from a remote server anyway.

              – Mark Amery
              Nov 4 '18 at 16:52


















            -1














            Try removing the "," from the line



            data: { myReplayData: 'message sent' },
            data: { myReplayData: 'message sent' }





            share|improve this answer


























            • -1; trailing commas in object literals are legal in modern JavaScript, so there's no need to remove this one, and there's no plausible way that one could cause a 500 error from a remote server anyway.

              – Mark Amery
              Nov 4 '18 at 16:52
















            -1












            -1








            -1







            Try removing the "," from the line



            data: { myReplayData: 'message sent' },
            data: { myReplayData: 'message sent' }





            share|improve this answer















            Try removing the "," from the line



            data: { myReplayData: 'message sent' },
            data: { myReplayData: 'message sent' }






            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited Nov 4 '18 at 16:50









            Mark Amery

            63.1k31251302




            63.1k31251302










            answered Nov 4 '18 at 0:48









            Jakeline Sofia Campos CabelloJakeline Sofia Campos Cabello

            1




            1













            • -1; trailing commas in object literals are legal in modern JavaScript, so there's no need to remove this one, and there's no plausible way that one could cause a 500 error from a remote server anyway.

              – Mark Amery
              Nov 4 '18 at 16:52





















            • -1; trailing commas in object literals are legal in modern JavaScript, so there's no need to remove this one, and there's no plausible way that one could cause a 500 error from a remote server anyway.

              – Mark Amery
              Nov 4 '18 at 16:52



















            -1; trailing commas in object literals are legal in modern JavaScript, so there's no need to remove this one, and there's no plausible way that one could cause a 500 error from a remote server anyway.

            – Mark Amery
            Nov 4 '18 at 16:52







            -1; trailing commas in object literals are legal in modern JavaScript, so there's no need to remove this one, and there's no plausible way that one could cause a 500 error from a remote server anyway.

            – Mark Amery
            Nov 4 '18 at 16:52















            -2














            Look at your "image" parameter in the shareAsync(). You must send a Base64 url or it will go wrong.






            share|improve this answer




























              -2














              Look at your "image" parameter in the shareAsync(). You must send a Base64 url or it will go wrong.






              share|improve this answer


























                -2












                -2








                -2







                Look at your "image" parameter in the shareAsync(). You must send a Base64 url or it will go wrong.






                share|improve this answer













                Look at your "image" parameter in the shareAsync(). You must send a Base64 url or it will go wrong.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Oct 25 '18 at 3:42









                SaltyLeungSaltyLeung

                1




                1






























                    draft saved

                    draft discarded




















































                    Thanks for contributing an answer to Stack Overflow!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid



                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.


                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f51212152%2ffbinstant-shareasync-failed-with-500%23new-answer', 'question_page');
                    }
                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    MongoDB - Not Authorized To Execute Command

                    Npm cannot find a required file even through it is in the searched directory

                    in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith