如何解决错误403 disallowed_useragent。在使用谷歌认证的Windows Azure移动服务时出现错误。 我的代码是
var user = await TodoItemManager.DefaultManager.CurrentClient.LoginAsync(
UIApplication.SharedApplication.KeyWindow.RootViewController, MobileServiceAuthenticationProvider.Google);
if (user != null)
{
var authAlert = new UIAlertView("Authentication", "You are now logged in " + user.UserId, null, "OK", null);
//authAlert.Show();
}