跳至主要内容

对授权请求错误进行故障排除

当为用户获取 OAuth 令牌时,在初始授权请求阶段可能会发生一些错误。

应用程序已暂停

如果已暂停您设置的 OAuth 应用(由于报告的滥用、垃圾邮件或 API 使用不当),GitHub 将使用以下参数重定向到已注册的回调 URL,以总结错误

http://your-application.com/callback?error=application_suspended
  &error_description=Your+application+has+been+suspended.+Contact+support@github.com.
  &error_uri=/apps/building-integrations/setting-up-and-registering-oauth-apps/troubleshooting-authorization-request-errors/%23application-suspended
  &state=xyz

要解决已暂停应用程序的问题,请通过 GitHub 支持门户 联系我们。

重定向 URI 不匹配

如果您提供的 redirect_uri 与您在应用程序中注册的不匹配,GitHub 将使用以下参数重定向到已注册的回调 URL,以总结错误

http://your-application.com/callback?error=redirect_uri_mismatch
  &error_description=The+redirect_uri+MUST+match+the+registered+callback+URL+for+this+application.
  &error_uri=/apps/building-integrations/setting-up-and-registering-oauth-apps/troubleshooting-authorization-request-errors/%23redirect-uri-mismatch
  &state=xyz

要更正此错误,请提供与您注册的 redirect_uri 匹配的 redirect_uri,或省略此参数以使用在应用程序中注册的默认 redirect_uri

拒绝访问

如果用户拒绝访问您的应用程序,GitHub 将使用以下参数将重定向到已注册的回调 URL,以总结错误

http://your-application.com/callback?error=access_denied
  &error_description=The+user+has+denied+your+application+access.
  &error_uri=/apps/building-integrations/setting-up-and-registering-oauth-apps/troubleshooting-authorization-request-errors/%23access-denied
  &state=xyz

您无法采取任何措施,因为用户可以自由选择不使用您的应用程序。通常情况下,用户只会关闭窗口或按浏览器的返回按钮,因此您可能永远看不到此错误。