We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
nonce
response_type: 'id_token'
part of
https://developers.google.com/identity/protocols/oauth2/javascript-implicit-flow
and need for example sui zklogin enoki
https://github.com/MystenLabs/sui/blob/b516d265b27ff69f8fe37946c7c50b522de5e7ac/sdk/enoki/src/EnokiFlow.ts#L123-L126
The text was updated successfully, but these errors were encountered:
i found code:
vue3-google-signin/src/components/GoogleSignInButton.vue
Line 266 in bc90e06
so it turns out it's implemented, but in a button:
id_token
response.credential
@success
<script> const nonce = ref('') // handle success event const handleLoginSuccess = async (response: CredentialResponse) => { // response.credential is id_token! console.log('id_token=' + response.credential) } // handle an error event const handleLoginError = () => {} </script> <template> <GoogleSignInButton v-if="nonce" :nonce="nonce" @success="handleLoginSuccess" @error="handleLoginError" ></GoogleSignInButton> </template>
Sorry, something went wrong.
No branches or pull requests
part of
https://developers.google.com/identity/protocols/oauth2/javascript-implicit-flow
and need for example sui zklogin enoki
https://github.com/MystenLabs/sui/blob/b516d265b27ff69f8fe37946c7c50b522de5e7ac/sdk/enoki/src/EnokiFlow.ts#L123-L126
The text was updated successfully, but these errors were encountered: