After login from client side and receive access token on the server side, I want to call Google API for taking info. Can I in server-side just call google API, without insert API key and another credential but only with the access token?
Something like that:
plus.people.get({
resourceName: 'people/me',
personFields: 'emailAddresses,names',
auth: accessToken}, (err, response) => {
console.log(response);
});
I'm actually using node.js
api-keyoraccess-tokenwithoauthclientId and clientSecret.console.log(err)?