0

Mashape の API を使用しようとしています。エンドポイント (JSON 応答) をテストすると、問題なく動作していますが、目的の C アプリ対応コード例が機能していないため、次のエラーが発生します。

コード エラー

これは私のコードです:

- (IBAction)loadJson:(id)sender
{
    NSDictionary* headers = [NSDictionary dictionaryWithObjectsAndKeys:@"xxxxxxxxx", @"X-Mashape-Authorization", nil];
    NSDictionary* parameters = [NSDictionary dictionaryWithObjectsAndKeys:[NSURL URLWithString:@"<file url>"], @"files", @"", @"urls", nil];

    HttpJsonResponse* response = [[Unirest post:^(BodyRequest* request) {
        [request setUrl:@"https://lambda-face-recognition.p.mashape.com/detect"];
        [request setHeaders:headers];
        [request setParameters:parameters];
    }] asJson];
}

これを解決する方法はありますか?

ありがとう!

4

1 に答える 1

0

コード例は、これが実際にコードがどのように見えるべきかを示しています:

NSDictionary* headers = [NSDictionary dictionaryWithObjectsAndKeys:@"application/json", @"accept", nil];
NSDictionary* parameters = [NSDictionary dictionaryWithObjectsAndKeys:@"value", @"parameter", @"bar", @"foo", nil];

HttpJsonResponse* response = [[Unirest postEntity:^(BodyRequest* request) {
  [request setUrl:@"http://httpbin.org/post"];
  [request setHeaders:headers];
  // Converting NSDictionary to JSON:
  [request setBody:[NSJSONSerialization dataWithJSONObject:headers options:0 error:nil]];
}] asJson];

または、おそらくこれ:

NSDictionary* headers = [NSDictionary dictionaryWithObjectsAndKeys:@"application/json", @"accept", nil];
NSURL file = nil;
NSDictionary* parameters = [NSDictionary dictionaryWithObjectsAndKeys:@"value", @"parameter", file, @"file", nil];

HttpJsonResponse* response = [[Unirest post:^(MultipartRequest* request) {
  [request setUrl:@"http://httpbin.org/post"];
  [request setHeaders:headers];
  [request setParameters:parameters];
}] asJson];
于 2013-07-13T05:39:01.707 に答える