我在 Windows Phone 7.5 应用程序中进行谷歌身份验证期间收到 404- Not Found 错误。
public void login()
{
var cli = new RestClient("https://accounts.google.com/o/oauth2/auth");
cli.Authenticator = new HttpBasicAuthenticator(user, password);
var request = new RestRequest("token", Method.POST);
cli.ExecuteAsync(request, response =>
{
MessageBox.Show(response.Content);
});
}
我提供了有效的登录凭据,但它显示响应为 404-NotFound。请帮我解决这个问题
谢谢