Facebook messenger - broadcast API - (#-1) Unexpected internal errorUnable to send a message to myself on phone using the Bots for Messenger API -getting 400 response from messenger API?Facebook Messenger Platform Send API unexpected internal errorfacebook javascript api gives error on post like “(#3) Publishing likes through the API is only available for page access tokens”Cannot send messages using Messenger Send API even after mobile app asked for page_messages permissionFacebook Marketing API - Cannot Create Ad-SetHow to get app accesstoken for marketing API FacebookFacebook messenger bot error nonexisting field (messages)Facebook Broadcast api required both page & app level messaging permissions?Testing the broadcast function on messenger
How to remove the first colon ':' from a timestamp?
Alternator dying so junk car?
Why does FFmpeg choose 10+20+20 ms instead of an even 16 ms for 60 fps GIF images?
Why did Spider-Man take a detour to Dorset?
Get back to US from Canada without passport
(Piano) is the purpose of sheet music to be played along to? Or a guide for learning and reference during playing?
What made Windows ME so crash-prone?
Did Voldemort kill his father before finding out about Horcruxes?
Is there any conditions on a finite abelian group so that it cannot be class group of any number field?
License validity of unreleased project
Is it OK to use personal email ID for faculty job applications or should we use (current) institute's ID
Should I be able to keep my company purchased standing desk when I leave my job?
Sankhara meditation
Can you perfectly wrap a cube with this blocky shape?
How fast does a character need to move to be effectively invisible?
What is the word for "event executor"?
What is the German word or phrase for "village returning to forest"?
Interviewing with an unmentioned 9 months of sick leave taken during a job
Why are road bikes (not time trial bikes) used in many triathlons?
How should the player unlock things?
What happens if there is no space for entry stamp in the passport for US visa?
How Efficient Could Anaerobic Megafauna Be?
Link of a singularity
Did 007 exist before James Bond?
Facebook messenger - broadcast API - (#-1) Unexpected internal error
Unable to send a message to myself on phone using the Bots for Messenger API -getting 400 response from messenger API?Facebook Messenger Platform Send API unexpected internal errorfacebook javascript api gives error on post like “(#3) Publishing likes through the API is only available for page access tokens”Cannot send messages using Messenger Send API even after mobile app asked for page_messages permissionFacebook Marketing API - Cannot Create Ad-SetHow to get app accesstoken for marketing API FacebookFacebook messenger bot error nonexisting field (messages)Facebook Broadcast api required both page & app level messaging permissions?Testing the broadcast function on messenger
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
Past few hours i am facing this issue. I have created new label as below request
Method: POST
URL: https://graph.facebook.com/v2.11/me/custom_labels?access_token=<ACCESS_TOKEN>
Payload:
"name": "testing-2"
Successfully created i got label id in response as
"id": "2310623892330135"
Then I associated user page scope id with label id as below request
Method: POST
Url: https://graph.facebook.com/v2.11/<LABEL-ID>/label?access_token=<ACCESS_TOKEN>
Payload:
"user": "2378210095523286"
Success response is
"success": true
Then i created Broadcast message as below
Method: POST
URL: https://graph.facebook.com/v2.11/me/message_creatives?access_token=<ACCESS_TOKEN>
Payload:
"messages": [
"text": "It's time for a healthy start to the day!!!!"
]
success response is
"message_creative_id": "2261779967427944"
Then i try to send message in broadcast api as below
Method: POST
Url: https://graph.facebook.com/v2.11/me/broadcast_messages?access_token=<ACCESS_TOKEN>
Payload:
"message_creative_id": "2261779967427944",
"custom_label_id": "2310623892330135"
Error response is,
"error":
"message": "(#-1) Unexpected internal error",
"type": "OAuthException",
"code": -1,
"error_subcode": 2018012,
"fbtrace_id": "FuSl3sJfoYk"
Can anyone please guide me to fix this issue.
I have created issue in facebook bug boundry, if anyone facing same issue please subscribe this issue - https://developers.facebook.com/support/bugs/2092341407546688/
facebook facebook-messenger facebook-messenger-bot facebook-chatbot
add a comment |
Past few hours i am facing this issue. I have created new label as below request
Method: POST
URL: https://graph.facebook.com/v2.11/me/custom_labels?access_token=<ACCESS_TOKEN>
Payload:
"name": "testing-2"
Successfully created i got label id in response as
"id": "2310623892330135"
Then I associated user page scope id with label id as below request
Method: POST
Url: https://graph.facebook.com/v2.11/<LABEL-ID>/label?access_token=<ACCESS_TOKEN>
Payload:
"user": "2378210095523286"
Success response is
"success": true
Then i created Broadcast message as below
Method: POST
URL: https://graph.facebook.com/v2.11/me/message_creatives?access_token=<ACCESS_TOKEN>
Payload:
"messages": [
"text": "It's time for a healthy start to the day!!!!"
]
success response is
"message_creative_id": "2261779967427944"
Then i try to send message in broadcast api as below
Method: POST
Url: https://graph.facebook.com/v2.11/me/broadcast_messages?access_token=<ACCESS_TOKEN>
Payload:
"message_creative_id": "2261779967427944",
"custom_label_id": "2310623892330135"
Error response is,
"error":
"message": "(#-1) Unexpected internal error",
"type": "OAuthException",
"code": -1,
"error_subcode": 2018012,
"fbtrace_id": "FuSl3sJfoYk"
Can anyone please guide me to fix this issue.
I have created issue in facebook bug boundry, if anyone facing same issue please subscribe this issue - https://developers.facebook.com/support/bugs/2092341407546688/
facebook facebook-messenger facebook-messenger-bot facebook-chatbot
add a comment |
Past few hours i am facing this issue. I have created new label as below request
Method: POST
URL: https://graph.facebook.com/v2.11/me/custom_labels?access_token=<ACCESS_TOKEN>
Payload:
"name": "testing-2"
Successfully created i got label id in response as
"id": "2310623892330135"
Then I associated user page scope id with label id as below request
Method: POST
Url: https://graph.facebook.com/v2.11/<LABEL-ID>/label?access_token=<ACCESS_TOKEN>
Payload:
"user": "2378210095523286"
Success response is
"success": true
Then i created Broadcast message as below
Method: POST
URL: https://graph.facebook.com/v2.11/me/message_creatives?access_token=<ACCESS_TOKEN>
Payload:
"messages": [
"text": "It's time for a healthy start to the day!!!!"
]
success response is
"message_creative_id": "2261779967427944"
Then i try to send message in broadcast api as below
Method: POST
Url: https://graph.facebook.com/v2.11/me/broadcast_messages?access_token=<ACCESS_TOKEN>
Payload:
"message_creative_id": "2261779967427944",
"custom_label_id": "2310623892330135"
Error response is,
"error":
"message": "(#-1) Unexpected internal error",
"type": "OAuthException",
"code": -1,
"error_subcode": 2018012,
"fbtrace_id": "FuSl3sJfoYk"
Can anyone please guide me to fix this issue.
I have created issue in facebook bug boundry, if anyone facing same issue please subscribe this issue - https://developers.facebook.com/support/bugs/2092341407546688/
facebook facebook-messenger facebook-messenger-bot facebook-chatbot
Past few hours i am facing this issue. I have created new label as below request
Method: POST
URL: https://graph.facebook.com/v2.11/me/custom_labels?access_token=<ACCESS_TOKEN>
Payload:
"name": "testing-2"
Successfully created i got label id in response as
"id": "2310623892330135"
Then I associated user page scope id with label id as below request
Method: POST
Url: https://graph.facebook.com/v2.11/<LABEL-ID>/label?access_token=<ACCESS_TOKEN>
Payload:
"user": "2378210095523286"
Success response is
"success": true
Then i created Broadcast message as below
Method: POST
URL: https://graph.facebook.com/v2.11/me/message_creatives?access_token=<ACCESS_TOKEN>
Payload:
"messages": [
"text": "It's time for a healthy start to the day!!!!"
]
success response is
"message_creative_id": "2261779967427944"
Then i try to send message in broadcast api as below
Method: POST
Url: https://graph.facebook.com/v2.11/me/broadcast_messages?access_token=<ACCESS_TOKEN>
Payload:
"message_creative_id": "2261779967427944",
"custom_label_id": "2310623892330135"
Error response is,
"error":
"message": "(#-1) Unexpected internal error",
"type": "OAuthException",
"code": -1,
"error_subcode": 2018012,
"fbtrace_id": "FuSl3sJfoYk"
Can anyone please guide me to fix this issue.
I have created issue in facebook bug boundry, if anyone facing same issue please subscribe this issue - https://developers.facebook.com/support/bugs/2092341407546688/
facebook facebook-messenger facebook-messenger-bot facebook-chatbot
facebook facebook-messenger facebook-messenger-bot facebook-chatbot
edited Mar 26 at 9:43
Deepak
asked Mar 26 at 8:19
DeepakDeepak
7672 gold badges6 silver badges21 bronze badges
7672 gold badges6 silver badges21 bronze badges
add a comment |
add a comment |
0
active
oldest
votes
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%2f55352581%2ffacebook-messenger-broadcast-api-1-unexpected-internal-error%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
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%2f55352581%2ffacebook-messenger-broadcast-api-1-unexpected-internal-error%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