diff options
author | Vitaly Takmazov | 2018-12-25 10:19:50 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2018-12-25 10:19:50 +0300 |
commit | da64667f6ef19bfeedb8b4b40d875fcd10d4ef6c (patch) | |
tree | f7924093880ca9291818558feb1f1a0dad2048b3 /Juick/APIClient.m | |
parent | d019c298dbefa3f5787044f7cd825932f4b583fe (diff) |
Trying to not request without password
Diffstat (limited to 'Juick/APIClient.m')
-rw-r--r-- | Juick/APIClient.m | 4 |
1 files changed, 4 insertions, 0 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"; |