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];
}
これを解決する方法はありますか?
ありがとう!