From da64667f6ef19bfeedb8b4b40d875fcd10d4ef6c Mon Sep 17 00:00:00 2001 From: Vitaly Takmazov Date: Tue, 25 Dec 2018 10:19:50 +0300 Subject: Trying to not request without password --- Juick/APIClient.m | 4 ++++ Juick/Supporting Files/Juick-Info.plist | 2 +- JuickPush/Info.plist | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/Juick/APIClient.m b/Juick/APIClient.m index 6f69e9d..3c91173 100644 --- a/Juick/APIClient.m +++ b/Juick/APIClient.m @@ -32,6 +32,10 @@ self.manager = [[AFHTTPSessionManager alloc] initWithBaseURL:[NSURL URLWithString:baseURLString]]; self.manager.requestSerializer = [AFJSONRequestSerializer new]; [self.manager.requestSerializer setCachePolicy:NSURLRequestReloadIgnoringLocalCacheData]; + NSString *username = [[PDKeychainBindings sharedKeychainBindings] stringForKey:@"com.juick.username"]; + if (username) { + [self.manager.requestSerializer setAuthorizationHeaderFieldWithUsername:username password:[[PDKeychainBindings sharedKeychainBindings] stringForKey:@"com.juick.password"]]; + } self.backgroundQueue = [NSOperationQueue new]; self.dateFormatter = [[NSDateFormatter alloc] init]; self.dateFormatter.dateFormat = @"yyyy-MM-dd HH:mm:ss"; diff --git a/Juick/Supporting Files/Juick-Info.plist b/Juick/Supporting Files/Juick-Info.plist index 9f83b9e..3a1374d 100644 --- a/Juick/Supporting Files/Juick-Info.plist +++ b/Juick/Supporting Files/Juick-Info.plist @@ -21,7 +21,7 @@ CFBundleSignature ???? CFBundleVersion - 94 + 95 ITSAppUsesNonExemptEncryption LSApplicationCategoryType diff --git a/JuickPush/Info.plist b/JuickPush/Info.plist index 327fc7b..22d71a4 100644 --- a/JuickPush/Info.plist +++ b/JuickPush/Info.plist @@ -19,7 +19,7 @@ CFBundleShortVersionString 1.0 CFBundleVersion - 94 + 95 NSExtension NSExtensionPointIdentifier -- cgit v1.2.3