0
xcode8で生成されたwoo-commerce APIをリンクしようとしているときに、エラー401が表示されています(グーグルで認証エラーが見つかりました)。ブラウザ。 参照のためにxcodeのコードスニップを追加する。Xcode8のリクエストでwoocomerce api 401エラーが発生する
let urlString = "https://serverUrl.com"
func downloadJsonWithURl(){
let url = NSURL(string: urlString)
let request = NSMutableURLRequest(url: url as! URL)
//keys for authentication
request.addValue("A KEY", forHTTPHeaderField: "Consumer-key")
request.addValue("A SECRET", forHTTPHeaderField: "Secret-key")
URLSession.shared.dataTask(with: (url as? URL)!, completionHandler: {(data, response, error) -> Void in
if let jsonObj = try? JSONSerialization.jsonObject(with: data!, options: .allowFragments) as? NSDictionary
print (jsonObj as Any)
}
}) .resume()
}
どのようなご提案も大変ありがとうございます。