I'm trying to implement multilink in my ios application, so I can add two oneDrive accounts to the same application, so I need to save the LiveConnectSession and set it to the current LiveConnectClient, but the LiveConnectClient session property is read-only, is there any way to do this?
I thought to save accessToken, authenticationToken, refreshToken, scopes, LiveConnectSession expires, and then do:
initWithAccessToken:(NSString *)accessToken
authenticationToken:(NSString *)authenticationToken
refreshToken:(NSString *)refreshToken
scopes:(NSArray *)scopes
expires:(NSDate *)expires;
thank
user2353899
source
share