我使用 Windows Azure Mobile Services for Xamarin Android 对 Google 用户进行身份验证并获得身份验证令牌为
while(_currentUser == null){
_currentUser = await _mobileClient.LoginAsync(context,
MobileServiceAuthenticationProvider.Google);
}
var authToken = _currentUser.MobileServiceAuthenticationToken;
var url = "https://www.googleapis.com/oauth2/v1/userinfo?access_token=" + authToken;
var request = WebRequest.Create (url)
var response = request.GetResponse ();
我收到一个 HTTP 401 错误:未经授权。我想使用此身份验证令牌获取用户信息。从 Azure 移动服务返回的身份验证令牌是否不适合此目的?任何想法将不胜感激。
谢谢。