How to make a rest call using oauth2.0

91 Views Asked by At

My resource server uses Oauth2 for authentication. We use google to authenticate the user. So basically Google is used as authentication server. 'tegile' is used as domain when authenticating.

What is the way to get bearer token from Google that I can pass to my resource server as part of REST header?

1

There are 1 best solutions below

0
On

Here's how you can use Google's Sign-In button template to initialize the login & grant of permissions process:

<meta name="google-signin-client_id" content="{{ OAUTH2_CLIENT_ID }}">

<script src="https://apis.google.com/js/platform.js?onload=onLoad" async defer></script>

<div id="google-signin-button"
     class="g-signin2"
     data-width="170"
     data-height="30"
     data-onsuccess="onSignIn"
     data-onfailure="onSignInFailure">
</div>
function onSignIn(googleUser) {
    var profile = googleUser.getBasicProfile();
    var idToken = googleUser.getAuthResponse().id_token;
}