1

ビッグ コマース ストアのコンテンツを表示する、作成した既存のアプリの機能拡張に取り組んでいます。基本的には、ユーザーが iPhone で入力したメール アドレスが Customer リストに存在するかどうかをアプリで確認し、これに基づいてアクションを実行できるようにしたいと考えています。顧客リストを取得するための API キーと Call メソッドがありますが、iOS でこのアクションを実行する最善の方法がわかりません。これを呼び出すために何をする必要があるかについて、誰かが私にいくつかの指針を与えることができますか?

更新:これまでに次のコードを使用しました:

-(IBAction)gettingcustomers {
    NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:@"mystoreserver.customers.json"]
                                                           cachePolicy:NSURLRequestReloadIgnoringLocalAndRemoteCacheData
                                                       timeoutInterval:10];

    [request setHTTPMethod: @"GET"];

    NSError *requestError;
    NSURLResponse *urlResponse = nil;


    NSData *response1 = [NSURLConnection sendSynchronousRequest:request returningResponse:&urlResponse error:&requestError];
    NSLog(@"%@", requestError);
}

ログのエラーは次のとおりです。

Error Domain=NSURLErrorDomain Code=-1012 "The operation couldn’t be completed. (NSURLErrorDomain error -1012.)" UserInfo=0xa7d12e0 {NSErrorFailingURLKey=mystoreserver.customers.json, NSErrorFailingURLStringKey=mystoreserver.customers.json, NSUnderlyingError=0xa7da430 "The operation couldn’t be completed. (kCFErrorDomainCFNetwork error -1012.)"}
4

1 に答える 1