我有一个应用程序,用户可以使用Instapaper进行身份验证。但是,他们需要Instapaper订阅才能执行此操作,因此如果他们尝试使用未订阅Instapaper的帐户登录,我想向他们显示错误。
但是当他们尝试登录时,AFNetworking认为它成功,然后将此错误显示在控制台上:
错误:错误域= AFNetworkingErrorDomain代码= -1011“预期 状态代码在(200-299),得到400“UserInfo = 0x8374840 {NSLocalizedRecoverySuggestion = [{“error_code”:1041,“message”: “需要订阅帐户”,“类型”:“错误”}], AFNetworkingOperationFailingURLRequestErrorKey = HTTPS://www.instapaper.com/api/1/bookmarks/list> ;, NSErrorFailingURLKey = https://www.instapaper.com/api/1/bookmarks/list, NSLocalizedDescription =(200-299)中的预期状态代码,得到400, AFNetworkingOperationFailingURLResponseErrorKey =}
我正在使用的是AFXAuthClient,这是对AFNetworking的修改。我将其子类化为创建一个自定义的Instapaper API客户端,如下所示:
#import "AFInstapaperClient.h"
#import "AFJSONRequestOperation.h"
@implementation AFInstapaperClient
+ (AFInstapaperClient *)sharedClient {
static AFInstapaperClient *sharedClient = nil;
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
sharedClient = [[AFInstapaperClient alloc] initWithBaseURL:[NSURL URLWithString:@"https://www.instapaper.com/"]
key:@"..."
secret:@"..."];
});
return sharedClient;
}
- (id)initWithBaseURL:(NSURL *)url {
if (self = [super initWithBaseURL:url]) {
[self registerHTTPOperationClass:[AFJSONRequestOperation class]];
[self setDefaultHeader:@"Accept" value:@"application/json"];
}
return self;
}
@end
当他们登录时,执行以下代码:
- (IBAction)doneButtonPressed:(UIBarButtonItem *)sender {
[[AFInstapaperClient sharedClient] authorizeUsingXAuthWithAccessTokenPath:@"/api/1/oauth/access_token"
accessMethod:@"POST"
username:self.loginBox.text
password:self.passwordBox.text
success:^(AFXAuthToken *accessToken) {
// Save the token information into the Keychain
[UICKeyChainStore setString:accessToken.key forKey:@"InstapaperKey"];
[UICKeyChainStore setString:accessToken.secret forKey:@"InstapaperSecret"];
UIAlertView *alert = [[UIAlertView alloc]
initWithTitle:@"Login Successful"
message:@"Your articles are being downloaded now and will appear in your queue."
delegate:nil
cancelButtonTitle:@"OK"
otherButtonTitles: nil];
[alert show];
[[NSUserDefaults standardUserDefaults] setObject:@"YES" forKey:@"IsLoggedInToInstapaper"];
[self dismissViewControllerAnimated:YES completion:nil];
}
failure:^(NSError *error) {
UIAlertView *alert = [[UIAlertView alloc]
initWithTitle:@"Login Failed."
message:@"Are you connected to the internet? Instapaper may also be down. Try again later."
delegate:nil
cancelButtonTitle:@"Okay"
otherButtonTitles: nil];
[alert show];
}];
}
但是代码永远不会进入故障块。我怎么能修改我的代码,以便它允许我告诉他们他们需要一个Instapaper订阅帐户?
答案 0 :(得分:1)
根据您的情况,我认为您不会触发失败阻止,因为您的请求没有失败。您正在从Web服务获得响应。根据我的经验,如果由于网络可用性或类似的情况而无法获得响应,则仅执行故障块。
因此,您需要在成功块中处理帐户错误。您可以这样做的一种方法是读取响应中返回的状态代码。如果状态代码为400,就像您的控制台正在显示,则提醒用户。
您可以按照此处使用的方法"https://stackoverflow.com/q/8469492/2670912"
答案 1 :(得分:0)
正如WeekendCodeWarrior所说,在这个实现中,即使他们无法提出进一步的请求,也会认为它是成功的。吐出错误的代码实际上是我做过的NSLog(哎呀,没有意识到这是我输出的代码),因为我认为一切都很好。
我的解决方案只是在该成功块中向API发出请求,检查 请求的结果(确实返回了response
个对象),然后相应地采取行动response
对象。