I'am using this link to implement google login in my AngularJS site and I am able to get id_token using
var id_token = googleUser.getAuthResponse().id_token;
then I'm passing this to php file and do like below,
https://www.googleapis.com/plus/v1/people/me?access_token=.$id_token
I'm getting this error,
"Daily Limit for Unauthenticated Use Exceeded. Continued use requires signup"
Note: I enabled google+ API in my console too.
Can anyone explain id_token is same as accesstoken ?