在Swift 4中使用Twilio发送消息

问题描述 投票:0回答:1

我试图用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()                
        }        
    }        
}
swift twilio alamofire message
1个回答
0
投票

您很可能不应该使用authenticate,而是直接以Twillio文档定义的方式将这些参数添加到您的请求中。 authenticate仅用于HTTP身份验证,用于生成响应凭据,因此除非服务器提示进行身份验证,否则将不会使用它。

此外,您不需要RunLoop.main.run(),iOS应用程序会自动运行循环。

© www.soinside.com 2019 - 2024. All rights reserved.