Episode Links Episode source codeincludes server and client apps HTTP Client app - This is the app I used to test out the API Creating a class to securely store the authentication token <strong>CredentialStore.h</strong> @interface CredentialStore : NSObject - (BOOL)isLoggedIn; - (void)clearSavedCredentials; - (NSString *)authToken; - (void)setAuthToken:(NSString *)authToken; @end <strong>Credenti