什么是Alamofire正确的API调用语法?

时间:2015-05-28 13:50:41

标签: alamofire httpie

我正在尝试调用以下API:

http -v -a qi.test.ac@gmail.com:pasword -f POST 'http://localhost:8080/api/v1/user/messages' from="qi.test.ac@gmail.com" to={"qi.test.ac@gmail.com","qi_test_ac@yahoo.com"}  subject="test_sub"  bodyText="testing hello"

我使用HTTPie使用正常上面的命令从终端成功调用它。

现在我想从Alamofire拨打电话。我试过以下方式:

    parameters = [

        "from" : fromMail,
        "to" : ["qi.test.ac@gmail.com","qi_test_ac@yahoo.com"]
    ]
    parameters["subject"] = message.getSubject()
    parameters["bodyText"] = message.getBodyText()

    Alamofire.request(.POST, urlString, parameters: parameters)//, encoding: .JSON)
        .authenticate(user: userName, password: password)
        .validate(statusCode: 200..<201)
        .validate(contentType: ["application/json"])
        .responseJSON {

            (_, _, jsonData, error) in

            if(error != nil) {

                println("\n sendMessage attempt json response:")
                println(error!)
                delegate?.messageSent?(false)
                return
            }
            println("Server response during message sending:\n")
            let swiftyJSONData = JSON(jsonData!)
            println(swiftyJSONData)
            delegate?.messageSent?(true)
    }

我尝试过url编码,默认情况下也是json编码。但还没有成功。有什么想法吗?

提前致谢。

0 个答案:

没有答案