gpt4 book ai didi

ios - 为什么我在向 Uber Sandbox 发送请求时会收到此错误消息? NSURLErrorDomain 错误-1012

转载 作者:可可西里 更新时间:2023-11-01 02:19:16 30 4
gpt4 key购买 nike

我可以从产品路径获取产品 ID,但在尝试向沙盒安排行程发布请求时出现此错误。试图弄清楚我在这里做错了什么。我添加了不记名 token 。我不确定它想要什么或缺少什么。


错误域=NSURLErrorDomain 代码=-1012“操作无法完成。(NSURLErrorDomain 错误-1012。)”UserInfo=0x7f8c13939ed0 {NSErrorFailingURLStringKey=https://sandbox-api.uber.com/v1/requests,NSUnderlyingError=0x7f8c0ac78410 “操作无法完成。(kCFErrorDomainCFNetwork 错误 -1012。)”,NSErrorFailingURLKey=https://sandbox-api.uber.com/v1/requests}

func performPostUberRequest(url: NSURL, prodId: String) {
let params:[String: AnyObject] = [
"start_latitude" : "39.955715",
"start_longitude" : "-75.1680298",
"end_latitude" : "39.9542675",
"end_longitude" : "-75.1409609",
"product_id": prodId
]

var error: NSError?
var request: NSMutableURLRequest = NSMutableURLRequest(URL: url)
request.HTTPMethod = "POST"
request.addValue("Bearer \(uberToken)", forHTTPHeaderField: "Authorization")
request.addValue("application/json", forHTTPHeaderField: "Content-Type")
request.HTTPBody = NSJSONSerialization.dataWithJSONObject(params, options: NSJSONWritingOptions.allZeros, error: &error)
NSURLConnection.sendAsynchronousRequest(request, queue: NSOperationQueue.mainQueue()){
response, data, error in
if let error = error {
println(error)
} else if data != nil {
if let json: NSDictionary = NSJSONSerialization.JSONObjectWithData(data, options: nil, error: nil) as? NSDictionary {
println(json)
}
}
}
}

最佳答案

根据您的评论:{ code = unauthorized;消息=“缺少范围:请求”; },您可能会错过范围,它可以在您的 Uber 开发人员仪表板上指定,您在其中注册了应用程序并获得了密码和客户端 ID 等。

如果您这样做了,您应该在通过 OAuth2.0 请求授权码访问 token 时将必要的范围添加到参数中> 在开头。

在我的实现中,范围指定如下:

[[NXOAuth2AccountStore sharedStore] setClientID:_clientID
secret:_clientSecret
scope:[NSSet setWithObjects:@"request", @"history_lite", @"profile", @"request_receipt", nil]
authorizationURL:[NSURL URLWithString:@"https://login.uber.com/oauth/authorize"]
tokenURL:[NSURL URLWithString:@"https://login.uber.com/oauth/token"]
redirectURL:[NSURL URLWithString:_redirectURL]
keyChainGroup:nil
forAccountType:_applicationName];

关于ios - 为什么我在向 Uber Sandbox 发送请求时会收到此错误消息? NSURLErrorDomain 错误-1012,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32237618/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com