Swift POST请求不起作用 [英] Swift POST request don't work

查看:144
本文介绍了Swift POST请求不起作用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试向Swift发出发布请求.我的目标是将accesstoken facebook发布到服务器,但不起作用.这是代码:

I'm trying to make a post request with Swift. my goal is to post the accesstoken facebook to a server but does not work. here's the code:

let myUrlfb = NSURL(string: "MyApiServer");

let requestfb = NSMutableURLRequest(URL:myUrlfb!);

requestfb.HTTPMethod = "POST";// Compose a query string


//We make the post string
let postStringfb = FBSDKAccessToken.currentAccessToken().tokenString

requestfb.HTTPBody = postStringfb.dataUsingEncoding(NSUTF8StringEncoding);

let task = NSURLSession.sharedSession().dataTaskWithRequest(requestfb) {
                    data, response, error in

    if error != nil
    {
        print("error=\(error)")
        return

    }

答案如下:

{"statusCode":400,"error":"Bad Request","message":"child \"access_token\" fails because [access_token is required]","validation":{"source":"payload","keys":["access_token"]}})

推荐答案

通过这种方式,您可以使用POST Web服务:

Here this way you can consume POST web services:

func webApi() {
            let request = NSMutableURLRequest(URL: NSURL(string: "your url")!)
                    request.HTTPMethod = "POST"

            var string = "access_token="
            var postString =       string.stringByAppendingString(FBSDKAccessToken.currentAccessToken().tokenString)
                request.HTTPBody = postString.dataUsingEncoding(NSUTF8StringEncoding)
                let task = NSURLSession.sharedSession().dataTaskWithRequest(request) { data, response, error in
                    guard error == nil && data != nil else {                                                          // check for fundamental networking error
                        print("error=\(error)")
                        return
                    }

                    if let httpStatus = response as? NSHTTPURLResponse where httpStatus.statusCode != 200 {           // check for http errors
                        print("statusCode should be 200, but is \(httpStatus.statusCode)")
                        print("response = \(response)")
                    }

                    let responseString = NSString(data: data!, encoding: NSUTF8StringEncoding)
                    print("responseString = \(responseString)")
                }
                task.resume()
            }

    }//End of webapi function

这篇关于Swift POST请求不起作用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆