0

왓슨 대화 (a.i.)와 Node.js를 백엔드로 사용하여 대화방에서 작업하고 있지만 올바른 순서로 메시지를 보내는 데 문제가 있습니다.Facebook Messenger가 올바른 순서로 메시지를 보내지 않습니다.

같은 prob를 가진 사람들이있었습니다. Facebook Messenger bot not sending messages in orderhttps://developers.facebook.com/bugs/565416400306038에이 문제가 해결되었는지 알 수는 없습니다.

대기열 약속 및 재귀를 시도했지만 아직 임의 순서 지정을 받고 있습니다. 어떤 제안 ??

답변

0

app.js가 메시지 보내기 API로 설정되는 방법을 확인하는 것이 유용 할 것입니다.

나는 왓슨 대화를 지원하고 포함하는 FB 로봇 키트의 예는 어떤 FB 작업이 여기 Botmaster

+0

감사를 찾을 수 있습니다 나는 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 * */ 

라는 함수를 생성하는 유사한 문제가 있었다! 확실하게 살펴 보겠습니다. 현재 코드를 읽을 수 없습니다 : // –