facebook-messages

where can I find error code information for facebook bot send api?

◇◆丶佛笑我妖孽 提交于 2019-12-24 08:10:24
问题 I am sending daily messages to my bot users and I am getting error for some users which says error messages like: (#100) No matching user found or (#551) This person isn't receiving messages from you right now but Facebook doesn't have proper error documentations for these errors.. did anyone else come across these issues? 回答1: After digging a bit in the bugs platform of Facebook I found some interesting threads. For the No matching user found It appears that the end user could have delete

Sending private messages through Facebook API [duplicate]

為{幸葍}努か 提交于 2019-12-20 09:17:44
问题 This question already has answers here : Closed 7 years ago . Possible Duplicate: Facebook Api - send private messages to friends I know that it is not officially possible to send private messages through FB API. Every thread in SO says so too. But I was using RockMelt browser and when you invite somebody, a private message is sent to them. Means it is possible to send private messages through API. More importantly, Facebook is okay with it. Any guesses on how they are using it? Is it some

sending a private message to your friends via Facebook IOS SDK

旧街凉风 提交于 2019-12-17 09:53:56
问题 I saw your post about sending messages to your Facebook friends via the IOS Facebook sdk, I was wondering if there is a way to send a private message as well to these friends. If not, is sending messages to your Facebook friends still supported from your previous post at: iOS Development: How can I get a Facebook wall post to show in the friend's news feed? If so let me know, thank you in advance 回答1: It is possible to send a private message via facebook- just not with the SDK. You can get

Passing Facebook Messenger bot webview data to Dialogflow and continuing the conversation

让人想犯罪 __ 提交于 2019-12-13 03:24:48
问题 I am using Dialogflow and Facebook messenger to build a interface that opens a Facebook Messenger webview to allow the user to input data. Once the user inputs the data in the webview I want to: Get this data send to Dialogflow and continue the conversation with the user and ask them a follow up question How can I do this? 回答1: Dialogflow doesn't current listen for Facebook Messenger webview events. Dialogflow supports Facebook Messenger welcome (i.e. when the user opens a chat window to

Facebook messenger chathead is not opening up with the 'AccessToken.getCurrentAccessToken().getUserId()' user ID passed into the intent

瘦欲@ 提交于 2019-12-13 03:19:40
问题 I'm trying to open Facebook Messenger programmatically for specific user using his user ID. Here's my code: AlertDialog.Builder dialogBuilder = new AlertDialog.Builder(mContext); LayoutInflater inflater = (LayoutInflater) mContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE); android.view.View dialogView = inflater.inflate(R.layout.dialog_right_swipe, null); dialogBuilder.setView(dialogView); TextView contactForBuyingTxt = dialogView.findViewById(R.id.contact_for_buying_txt);

How to get the page scope id of Facebook when user checkout in my Shopify store?

断了今生、忘了曾经 提交于 2019-12-12 19:21:14
问题 Before facebook last update I was using Facebook Send message API by passing user reference. I was getting this information by checking the checkbox during checkout in my store (Shopify) using Facebook. Now the Facebook Send message API no longer returns recipient_id in the response for message sends that use recipient.user_ref or recipient.phone_number to identify the message recipient. Now they are using the Page scope id syntax is recipient": { "id": "<PSID>" }, i am using this API How can

sending a private message to your friends via Facebook IOS SDK

杀马特。学长 韩版系。学妹 提交于 2019-11-27 09:17:12
I saw your post about sending messages to your Facebook friends via the IOS Facebook sdk, I was wondering if there is a way to send a private message as well to these friends. If not, is sending messages to your Facebook friends still supported from your previous post at: iOS Development: How can I get a Facebook wall post to show in the friend's news feed? If so let me know, thank you in advance It is possible to send a private message via facebook- just not with the SDK. You can get the user's 'username' (ie. http://www.facebook.com/username ) and you can send them an email via your app to

how send message facebook friend through graph api using Accessstoken

不问归期 提交于 2019-11-26 08:55:09
问题 Can anyone help me to send message to facebook friends using graph api. I tried $response = $facebook->call_api(\"/me/feed\", \"post\", \"to=john\",\"message=You have a Test message\"); It\'s not working. I have the accesstoken of the user in my hand.only I am confused on sending process. 回答1: You can't send messages using a Facebook application. You used to be able to do that, but the (predictable?) colossal amount of abuse led to the revocation of this ability. Provided Alice, your user,

Send private messages to friends

我的未来我决定 提交于 2019-11-26 01:56:37
问题 I need to get via Facebook connect user\'s info and send a private message to all of his friends. Is it possible? 回答1: Sending private message through api is now possible. Fire this event for sending message(initialization of facebook object should be done before). to:user id of facebook function facebook_send_message(to) { FB.ui({ app_id:'xxxxxxxx', method: 'send', name: "sdfds jj jjjsdj j j ", link: 'https://apps.facebook.com/xxxxxxxaxsa', to:to, description:'sdf sdf sfddsfdd s d fsf s ' })