我正在擴展現有應用程序的功能,這些應用程序是用來顯示Big Commerce商店中的內容的。基本上,我希望應用程序能夠檢查用戶在iPhone上輸入的電子郵件地址是否存在於客戶列表中,然後基於此執行操作。我有一個API Key和Call方法來獲取客戶列表,但我不確定如何在iOS上執行此操作。有人能給我一些關於我需要做什麼來調用它的指針嗎?BigCommerce使用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.)"}