gpt4 book ai didi

objective-c - NSLocalizedDescription=预期状态码在 (200-299),得到 400

转载 作者:塔克拉玛干 更新时间:2023-11-02 10:16:26 26 4
gpt4 key购买 nike

当我尝试发送 HTTP 请求以获取如下 JSON 响应时:

NSURL *url = [NSURL URLWithString:@"http://data.mycitydataset.gov/api/views/INLINE/rows.json?method=index"];

NSURLRequest *request = [NSURLRequest requestWithURL:url];

AFJSONRequestOperation *operation = [AFJSONRequestOperation JSONRequestOperationWithRequest:request success:^(NSURLRequest *request, NSHTTPURLResponse *response, id JSON) {
NSLog(@"Success");
} failure:^(NSURLRequest* req,NSHTTPURLResponse *req2, NSError *error,id mex) {
NSLog(@"%@", [error description]);
}];

[operation start];

我在日志中得到了这个堆栈:

Error Domain=com.alamofire.networking.error Code=-1011 "Expected status code in (200-299), got 400" UserInfo=0x7bb31b0 {NSErrorFailingURLKey=http://data.baltimorecity.gov/api/views/INLINE/rows.json?method=index, NSLocalizedDescription=Expected status code in (200-299), got 400}

我错过了什么吗?

最佳答案

HTTP 状态代码 400 表示“错误请求”。您正在尝试访问格式错误的 URL,或者您正在访问的 URL 想要在请求中看到您未提供的内容。

关于objective-c - NSLocalizedDescription=预期状态码在 (200-299),得到 400,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9754331/

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