如何使用 Swift 在我的 iOS 应用程序中使用 plivo SMS API。我阅读了很多关于此的文档。我不确定如何快速实现它。
var plivo = require('plivo');
var p = plivo.RestAPI({
authId: 'Your AUTH_ID',
authToken: 'Your AUTH_TOKEN'
});
var params = {
'src': '1111111111', // Sender's phone number with country code
'dst' : '2222222222', // Receiver's phone Number with country code
'text' : "Hi, text from Plivo", // Your SMS Text Message - English
//'text' : "こんにちは、元気ですか?", // Your SMS Text Message - Japanese
//'text' : "Ce est texte généré aléatoirement", // Your SMS Text Message - French
'url' : "http://example.com/report/", // The URL to which with the status of the message is sent
'method' : "GET" // The method used to call the url
};
// Prints the complete response
p.send_message(params, function (status, response) {
console.log('Status: ', status);
console.log('API Response:\n', response);
console.log('Message UUID:\n', response['message_uuid']);
console.log('Api ID:\n', response['api_id']);
});
上面的代码在 Node.js 中,我希望它用 swift 编写,而且我不确定如何将 plivo 集成到 iOS 应用程序中。我正在开发一个应用程序,它应该在用户请求订单时向管理员发送短信。所以我只想要从 Plivo 到管理员的传出消息。任何建议都非常有帮助。