4

***我对 HTTP 网络非常陌生。

基本上,这是可行的: curl -k -L -v -X POST --header "Content-Type: application/json" --header "Accept: application/json" --header 'Authorization: OAuth someAccessToken' --header " Force-Instance-Url: websiteurl" --header "Force-User-Id: someUserId" --data "{}" "websiteurl"

但是,我似乎无法在 Postman(chrome 的 HTTP 测试插件)或我在 iOS 中制作的程序中获得响应。结果始终为 HTTP 状态 500 - java.io.EOFException: 由于输入结束,没有内容映射到对象。

我一直非常小心地确保 url 和 headers 完全相同,但没有运气。在我的 iOS 程序中,我有一个成功检索访问令牌、instance_url 和 force_user_id 的 http 请求。我使用这些字段来发出上面发布的请求,但响应是错误 500。

由于它在邮递员中也不起作用,我不确定它是否有助于发布我的代码,但无论如何我都会:

NSURL *loginURL = [NSURL URLWithString:@"websiteurl"];
NSMutableURLRequest *request=[[NSMutableURLRequest alloc] initWithURL:loginURL];

[request setHTTPMethod:@"POST"];

NSString *instance_url = [self.loginDictionary objectForKey:@"instance_url"];
NSString *authorization = [NSString stringWithFormat:@"%@%@", @"OAuth ",[self.loginDictionary objectForKey:@"access_token"]];
NSString *instance_id = [self.loginDictionary objectForKey:@"id"];
NSRange range = [instance_id rangeOfString:@"/" options:NSBackwardsSearch];
if (range.location != NSNotFound)
{
    instance_id = [instance_id substringFromIndex:range.location + 1];
}
[request setValue:@"application/json" forHTTPHeaderField: @"Content-Type"];
[request setValue:@"application/json" forHTTPHeaderField: @"Accept"];
[request setValue:authorization forHTTPHeaderField: @"Authorization"];
[request setValue:instance_url forHTTPHeaderField: @"Force-Instance-Url"];
[request setValue:instance_id forHTTPHeaderField: @"Force-User-Id"];
NSLog(@"\n\n%@", [request allHTTPHeaderFields]);

AFJSONRequestOperation *operation = [AFJSONRequestOperation JSONRequestOperationWithRequest:request
    success:^(NSURLRequest *request, NSHTTPURLResponse *response, id JSON)
     {
         self.loginDictionary = (NSDictionary *) JSON;
         NSLog(@"*************************************************************************");
         NSLog(@"*************************************************************************");
         NSLog(@"FIREWORKS");
     }
    failure:^(NSURLRequest *request, NSHTTPURLResponse *response, NSError *error, id JSON)
     {
         NSLog(@"Request Failure Because %@",[error userInfo]); 
     }];
[operation start];

这是请求标头的日志打印。

{
Accept = "application/json";
Authorization = "OAuth accessTokenValue";
"Content-Type" = "application/json";
"Force-Instance-Url" = "websiteurl";
"Force-User-Id" = someUserId;
}

最后一点,对我来说似乎唯一的线索是 curl 命令中的 auth 标头是单引号,但其余的不是……我不确定这是否重要。感谢阅读和帮助。

4

1 回答 1

3

curl 自动添加一些标题。在您的示例中,它将发送Host: websiteurlContent-Length: 2

于 2013-06-28T00:54:03.090 回答