我有以下客户机密

{
  "web": {
    "client_id": "testid",
    "project_id": "testproj",
    "auth_uri": "https://accounts.google.com/o/oauth2/auth",
    "token_uri": "https://www.googleapis.com/oauth2/v3/token",
    "auth_provider_x509_cert_url": "https://www.googleapis.com/oauth2/v1/certs",
    "client_secret": "test-sec",
    "redirect_uris": [
      "https://localhost:8080/oauth2callback"
    ]
  }
}


而我得到


“错误:redirect_uri_mismatch
请求http://127.0.0.1:8414/authorize/中的重定向URI与为OAuth客户端授权的重定向URI不匹配。


要更新授权的重定向URI,请访问:“。请提出如何解决的建议。

我正在使用C#。我已经创建了凭证-

GoogleWebAuthorizationBroker.AuthorizeAsync( GoogleClientSecrets.Load(stream).Secrets, scopes,
                                             "user",
                                              CancellationToken.None,
                                              new FileDataStore(Directory.GetCurrentDirectory() + "\\AccessToken\\" ,
                                             true)).Result;


但是第一次,它弹出并显示登录信息,一旦我登录,它就在文件夹中创建了Google.Apis.Auth.OAuth2.Responses.TokenResponse-user文件。有没有办法绕过首次登录?

谢谢。

最佳答案

https://console.developers.google.com中创建凭据时:

google-api - redirect_uri_mismatch请求中的重定向URI与为OAuth客户端授权的重定向URI不匹配-LMLPHP

通过选择Create credentialsOAuth client ID上倾斜后:

google-api - redirect_uri_mismatch请求中的重定向URI与为OAuth客户端授权的重定向URI不匹配-LMLPHP

选择其他作为应用类型:



您应该具有以下格式的凭据:

{
  "installed": {
    "client_id": "...",
    "project_id": "...",
    "auth_uri": "https://accounts.google.com/o/oauth2/auth",
    "token_uri": "https://oauth2.googleapis.com/token",
    "auth_provider_x509_cert_url": "https://www.googleapis.com/oauth2/v1/certs",
    "client_secret": "...",
    "redirect_uris": [
      "urn:ietf:wg:oauth:2.0:oob",
      "http://localhost"
    ]
  }
}


现在,您的OAuth2链接应该可以在redirection_uri参数中的任何端口上正常工作,例如http://localhost:8414(将8414作为随机端口)。而且您不再是这个错误:


错误:redirect_uri_mismatch请求http://localhost:8414/authorize/中的重定向URI与为OAuth客户端授权的重定向URI不匹配。

10-08 18:03