我正在尝试使用REST API使用以下说明向渠道添加用户身份:https://www.twilio.com/docs/api/ip-messaging/rest/members#action-create
我发布到/Channels/channelId/Members
端点 - 我确定我的请求结构正确。
我收到来自Twilio IP Messaging的错误说:
{"code": 50200, "message": "User not found", "more_info": "https://www.twilio.com/docs/errors/50200", "status": 400}
我的理解是,当我们想要将某人添加到频道时,我们可以提供自己的身份。在将用户添加到频道之前,如何“注册”用户(使用电子邮件)?
编辑 - 代码:
var _getRequestBaseUrl = function() {
return 'https://' +
process.env.TWILIO_ACCOUNT_SID + ':' +
process.env.TWILIO_AUTH_TOKEN + '@' +
TWILIO_BASE + 'Services/' +
process.env.TWILIO_IPM_SERVICE_SID + '/';
};
var addMemberToChannel = function(memberIdentity, channelId) {
var options = {
url: _getRequestBaseUrl() + 'Channels/' + channelId + '/Members',
method: 'POST',
headers: {
'content-type': 'application/x-www-form-urlencoded',
},
form: {
Identity: memberIdentity,
},
};
request(options, function(error, response, body) {
if (error) {
// Getting the error here
}
// do stuff with response.
});
};
addMemberToChannel('test1@example.com', <validChannelId>);
答案 0 :(得分:0)
Twilio开发者传道者在这里。
为了将用户添加为频道成员,您确实需要先注册它们。查看creating a user in IP Messaging的文档。
使用您的代码,您需要以下功能:
var createUser = function(memberIdentity) {
var options = {
url: _getRequestBaseUrl() + 'Users',
method:'POST',
headers: {
'content-type': 'application/x-www-form-urlencoded',
},
form: {
Identity: memberIdentity,
}
};
request(options, function(error, response, body) {
if (error) {
// User couldn't be created
}
// do stuff with user.
});
}
我还建议你看看Twilio helper library for Node.js。它处理像您一样为您创建的URL。代码看起来更干净,您可以使用帮助程序库创建一个用户:
var accountSid = 'ACCOUNT_SID';
var authToken = 'AUTH_TOKEN';
var IpMessagingClient = require('twilio').IpMessagingClient;
var client = new IpMessagingClient(accountSid, authToken);
var service = client.services('SERVICE_SID');
service.users.create({
identity: 'IDENTITY'
}).then(function(response) {
console.log(response);
}).fail(function(error) {
console.log(error);
});
让我知道这是否有帮助。