Please describe your feature request
I'm frustrated with Google OAuth2 authorization. I have to do this every hour, and it's annoying!
Describe the solution you'd like
Use Refresh Tokens. They allow the client to use the same OAuth2 token much longer.
I'll try to point out some of the details.
- Use
access_type=offline on the PHP server side to get Refresh Token with OAuth2 Token.
- Create OS installation to handle URI so Card Maker can be opened from the browser link.
- Look at the
GoogleInitializerFactory class at line 72: delete IssuedUtc = DateTime.UtcNow and add Refresh Token there later.
Potentially useful links
Please describe your feature request
I'm frustrated with Google OAuth2 authorization. I have to do this every hour, and it's annoying!
Describe the solution you'd like
Use Refresh Tokens. They allow the client to use the same OAuth2 token much longer.
I'll try to point out some of the details.
access_type=offlineon the PHP server side to get Refresh Token with OAuth2 Token.GoogleInitializerFactoryclass at line 72: deleteIssuedUtc = DateTime.UtcNowand add Refresh Token there later.Potentially useful links