How do I get user profile using Google Access Token

I had the same issue. I wanted to extract the user information. But couldn’t get the exact link to hit. Then I went through the code for Passport Google Strategy at Line number 54. My scopes were [‘profile’, ’email’] GET Request https://www.googleapis.com/oauth2/v3/userinfo?access_token={access_token} Response { “sub”: “23423….”, “name”: “John Doe”, “given_name”: “John”, “family_name”: “Doe”, “picture”: “<Profile … Read more

Can I really not ship open source with Client ID? [closed]

On November 5th 2014 Google made some changes to the APIs terms of Service. Like you I had an issue with the following line. Asking developers to make reasonable efforts to keep their private keys private and not embed them in open source projects. I have several open source projects on GitHub they are basically … Read more

tech