在Swift 4中使用Twilio发送消息

时间:2019-03-12 10:41:53

标签: swift twilio alamofire message

我正在尝试使用Twilio API发送消息,但是它不起作用。我使用Alamofire发送消息。从www.twilio.com获取试用帐户,并将相关的个人参数传递给我的程序。当我运行程序时,什么都没发生。出于安全原因,我将伪造的数字用于令牌,SID,电话号码等。

这是我的代码:

import UIKit
import Alamofire    

class ViewController: UIViewController {

    override func viewDidLoad() {
        super.viewDidLoad()                
        if let accountSID = ProcessInfo.processInfo.environment["???????"], let authToken = ProcessInfo.processInfo.environment["?????"] {                
            let url = "https://api.twilio.com/2010-04-01/Accounts/\(accountSID)/Messages"
            let parameters = ["From": "+??????????", "To": "90????????", "Body": "Hello world"]

            Alamofire.request(url, method: .post, parameters: parameters)
                .authenticate(user: accountSID, password: authToken)
                .responseJSON { response in
                    debugPrint(response)                        
            }                                
            RunLoop.main.run()                
        }        
    }        
}

0 个答案:

没有答案