How can I set an existing LiveConnectSession in a LiveConnectClient?

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

+4
source share
1 answer

No, there is no supported method for this.

+1
source

Source: https://habr.com/ru/post/1531757/


All Articles