0

私はWatson Conversation(a.i.の場合)とNode.jsをバックエンドとして使用してチャットボットを作成していますが、正しい順序でメッセージを送信できません。Facebookメッセンジャーが正しい順序でメッセージを送信しない

同じprobを持つ人がいくつか見つかりました。 Facebook Messenger bot not sending messages in orderhttps://developers.facebook.com/bugs/565416400306038にありますが、この問題が解決されているかどうかわかりません。

私はキューとのコミットと再帰を試みましたが、まだランダムシーケンスが取得されています。助言がありますか ??

答えて

0

app.jsがsendメッセージAPIでどのように設定されているかを確認すると便利です。

私はSendCascade

/** 
    * sendCascadeTo() allows developers to send a cascade of messages 
    * in a sequence. All types of messages can be sent (including raw messages). 
    * 
    * @param {Array} messageArray of messages in a format as such: [{text: 'something'}, {message: someMessengerValidMessage}] 
    * @param {string} recipientId just the id of the recipient to send the messages to. If using full messages, the id will not be used 
    * 
    * @return {Promise} promise 
    * The returned value an in-place array of bodies received from the client platform 
    * The objects of the array are of the same format as for standard messages 
    * 
    */ 

ワトソンの会話をサポートし、いくつかのFBアクションがここにBotmaster

+0

感謝を見つけることができます含まれてFBボットキットの例と呼ばれる関数を作成した同様の問題を持っていました!私は確かに見てみましょう:) 私のコードは現時点では判読できません:// –

関連する問題