Как получить пользовательскую информацию в MVC5 из API Google через access_token, какой токен, предоставленный мобильным сервером, в веб-API? [Используемый код] [1]: https://i.stack.imgur.com/D2hfW.png
HttpClient client = new HttpClient();
var urlProfile ="https://www.googleapis.com/oauth2/v1/userinfo?access_token=" + model.Auth;
client.CancelPendingRequests();
HttpResponseMessage output = client.GetAsync(urlProfile).Result;
if (output.IsSuccessStatusCode)
{
string outputData = output.Content.ReadAsStringAsync().Result;
}
Ошибка при получении: Если я использую приведенный выше код для получения информации о пользователе по access_token
{
"error": {
"code": 401,
"message": "Request is missing required authentication credential. Expected OAuth 2 access token, login cookie or other valid authentication credential. See https://developers.google.com/identity/sign-in/web/devconsole-project.",
"status": "UNAUTHENTICATED"
}
}