请求方式:POST
接口版本: 5.2.3
接口描述:
var url = "https://api-v2.1dq.com/v5/Files/template.json"
var httpArg = "file_content=UEsDBAxxx&file_extension=docx&file_name=测试模板合同&easy_id=175592531139104768&file_size=200"
APISTORE(url, httpArg: httpArg)
func APISTORE(httpUrl: String, httpArg: String) {
var req = NSMutableURLRequest(URL: NSURL(string: httpUrl + "?" + httpArg)!)
req.timeoutInterval = 6
req.HTTPMethod = "GET"
NSURLConnection.sendAsynchronousRequest(req, queue: NSOperationQueue.mainQueue()) {
(response, data, error) -> Void in
let res = response as! NSHTTPURLResponse
println(res.statusCode)
if let e = error{
println("请求失败")
}
if let d = data {
var content = NSString(data: d, encoding: NSUTF8StringEncoding)
println(content)
}
}
}