In Facebook, I can get user photo by using user id, like this:
var info = await AuthenticationManager.GetExternalLoginInfoAsync();
string pictureUrl = "https://graph.facebook.com/" + info.Login.ProviderKey + "/picture?type=large";
Is it possible in Google? If possible, can you give me the url which I can get user photo with ProviderKey
?
something's like:
string pictureUrl = "https://google.com/" + info.Login.ProviderKey + "/picture?type=large";
Thank you!