FBInstant.shareAsync( ) failed with 500
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
add a comment |
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
add a comment |
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
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
facebook facebook-instant-games
asked Jul 6 '18 at 14:01
Dmitry KovalchukDmitry Kovalchuk
112
112
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
Try removing the "," from the line
data: { myReplayData: 'message sent' },
data: { myReplayData: 'message sent' }
-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
add a comment |
Look at your "image" parameter in the shareAsync(). You must send a Base64 url or it will go wrong.
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Try removing the "," from the line
data: { myReplayData: 'message sent' },
data: { myReplayData: 'message sent' }
-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
add a comment |
Try removing the "," from the line
data: { myReplayData: 'message sent' },
data: { myReplayData: 'message sent' }
-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
add a comment |
Try removing the "," from the line
data: { myReplayData: 'message sent' },
data: { myReplayData: 'message sent' }
Try removing the "," from the line
data: { myReplayData: 'message sent' },
data: { myReplayData: 'message sent' }
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
add a comment |
-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
add a comment |
Look at your "image" parameter in the shareAsync(). You must send a Base64 url or it will go wrong.
add a comment |
Look at your "image" parameter in the shareAsync(). You must send a Base64 url or it will go wrong.
add a comment |
Look at your "image" parameter in the shareAsync(). You must send a Base64 url or it will go wrong.
Look at your "image" parameter in the shareAsync(). You must send a Base64 url or it will go wrong.
answered Oct 25 '18 at 3:42


SaltyLeungSaltyLeung
1
1
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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