Windows Phone 7.5 アプリでの Google の認証中に 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 と表示されます。この問題を解決するために私を助けてください
ありがとう