The Google API client has Class: Google::Apis::PeopleV1::Name and Google::Apis::PeopleV1::Photo how do I hit these endpoints? I tried
p = Google::Apis::PeopleV1::Photo.new
response = p.url
But it returns nil
. Opposed to this GmailService has instance methods like get_user_message
which I can call like this
@service = Google::Apis::GmailV1::GmailService.new
# authorization is done
response = @service.get_user_message(user_id, message_id)
It returns a response
object which has the message
, now I want to fetch the User's name and Photo, but I did not find any method to access this information. How do I retrieve the User's name and photo using the API client?
I think that the value retrieved with the method of users.messages.get in Gmail API doesn't include "User Profile Picture". Ref So for example, in order to retrieve the URL of user's profile photo, how about using the method of people.connections.list in People API? The sample script is as follows.
Sample script:
Result:
When above script is run, the following result is returned.
phtots
are the URLs of the user's photo images.Note:
Reference: