Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow for refresh tokens to be used via access_type "offline" in Issue/#619 #634

Open
wants to merge 9 commits into
base: main
Choose a base branch
from
Prev Previous commit
Next Next commit
fix(#453): No need to cast as string
  • Loading branch information
aaronware committed Apr 14, 2024
commit fc1ea979cbbcce175843b16ecc9d7027caca1662
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export function googleAuth(options: {
login_hint: options.login_hint,
prompt: options.prompt,
scope: options.scope,
state: (options.state as string) || newState,
state: options.state || newState,
code: c.req.query('code'),
token: {
token: c.req.query('access_token') as string,
Expand Down