我正在努力扩展我制作的现有应用程序的功能,该应用程序显示来自 Big Commerce 商店的内容。基本上,我希望应用程序能够检查用户在 iPhone 上输入的电子邮件地址是否存在于客户列表中,然后基于此执行操作。我有一个 API 密钥和调用方法来获取客户列表,但不确定如何最好地在 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.)"}