Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to get user image through user id in Google plus?

I used to get user image through this URL

https://plus.google.com/s2/photos/profile/(user_id)?sz=150

but now what all I am getting is 404 error or no image. I know google has changed its policies and way it connects and allows other to get information, but I didn't anything to achieve same result as above.

Note: I can't use authenticate thing here since I am showing image of users to other users which are not connected at all.

OR in other way user may be not coming from Google log-in but I need to show other Google users images only.

Any help would be highly appreciated!!!

Edit: I have checked through people.get method

https://www.googleapis.com/plus/v1/people/11595...3592320?key=AIzaSyCkdmtNN1XDg....EpepOIIs

but I am getting error saying

{
   "error": {
     "errors": [
        {
          "domain": "usageLimits",
          "reason": "accessNotConfigured",
          "message": "Access Not Configured. Please use Google Developers Console to activate the API for your project."
        }
     ],
   "code": 403,
   "message": "Access Not Configured. Please use Google Developers Console to activate the API for your project."
  }
}

Edit: I have this already enabled since I am using Google+ log-in already in my site, here I am attaching screenshot:

Google+ API already enabled

like image 358
TheMohanAhuja Avatar asked Mar 14 '14 13:03

TheMohanAhuja


People also ask

What data can I get from Google login?

After you have signed in a user with Google using the default scopes, you can access the user's Google ID, name, profile URL, and email address.


1 Answers

Earlier I have also the same problem for my site after so much of research and efforts I found solution from my self and i hope that will also work for you and solve your problem:

Old Trick

Google had changed their policy so the old trick for getting the Google profile image will not work now.

e.g https://plus.google.com/s2/photos/profile/(user_id)?sz=150

New Trick

Get Request:

https://www.googleapis.com/plus/v1/people/115950284...320?fields=image&key={YOUR_API_KEY}

Response :200 OK

{
    "image": 
    {
         "url": "https://lh3.googleusercontent.com/-OkM...AANA/ltpH4BFZ2as/photo.jpg?sz=50"
    }
}

Where YOUR_API_KEY is your Public API Access key which is generated through Credentials under APIs & Auth from https://console.developers.google.com/

And While creating Public API access key you can choose Referers URL's from which this request should be made but for checking you should try by not adding any URL to it, if it works then go with URL of your site.

You can choose other fields to send with URL which you may need from here.

Happy Coding!!!

like image 91
Deepak Goswami Avatar answered Oct 14 '22 05:10

Deepak Goswami