使用 mesibo javascript api 的消息未送达,仅显示已发送状态
messages using mesibo javascript api not delivered,it shows only sent status
正在使用以下功能发送消息
function sendTextMessage(to, message) {
var profile = api.getProfile(to, 0);
var id = parseInt(Math.random()*10000);
profile.sendMessage(id, message);
}
之后,当我使用
记录监听器响应时
MesiboListener.prototype.Mesibo_OnMessageStatus = function(m) {
console.log("Mesibo_OnMessageStatus: from "
+ m.peer + " status: " + m.status);
}
它显示 Mesibo_OnMessageStatus:来自 4688250 状态:1 但未将状态更改为 2(已交付)
我们在 mesibo 票证上回复了您,对您的代码进行了细微更正(如果您没有收到,请检查垃圾邮件)。
您将 UID 作为目的地。您应该将地址作为目的地。试试下面的代码
var demo1_user_token = '81...';
var demo1_destination = 'vivek';
var demo_appid = 'com.f...';
var demo2_user_token = 'c9...';
var demo2_destination = 'maulik';
正在使用以下功能发送消息
function sendTextMessage(to, message) {
var profile = api.getProfile(to, 0);
var id = parseInt(Math.random()*10000);
profile.sendMessage(id, message);
}
之后,当我使用
记录监听器响应时MesiboListener.prototype.Mesibo_OnMessageStatus = function(m) {
console.log("Mesibo_OnMessageStatus: from "
+ m.peer + " status: " + m.status);
}
它显示 Mesibo_OnMessageStatus:来自 4688250 状态:1 但未将状态更改为 2(已交付)
我们在 mesibo 票证上回复了您,对您的代码进行了细微更正(如果您没有收到,请检查垃圾邮件)。
您将 UID 作为目的地。您应该将地址作为目的地。试试下面的代码
var demo1_user_token = '81...';
var demo1_destination = 'vivek';
var demo_appid = 'com.f...';
var demo2_user_token = 'c9...';
var demo2_destination = 'maulik';