Swift POST请求不起作用

Swift POST请求不起作用,第1张

Swift POST请求不起作用

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

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


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/4903241.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-12
下一篇 2022-11-12

发表评论

登录后才能评论

评论列表(0条)

保存