优步 api 身份验证期间发生错误:mismatching_redirect_uri
Uber api Error occurred during authentication: mismatching_redirect_uri
sessionConfiguration = new SessionConfiguration.Builder()
.setClientId(ClientID)
.setServerToken(ServerToken)
.setRedirectUri("https://www.policyplan.in/UberCab/uber_redirectUri.php?code=AUTHORIZATION_CODE")
.setEnvironment(SessionConfiguration.Environment.SANDBOX)
.setScopes(Arrays.asList(Scope.RIDE_WIDGETS))
.build();
请尝试 post 清晰且格式正确的问题 - 在这种情况下,您似乎遇到了重定向 URL 的问题。如果您阅读 Uber documentation - 重定向 URL 需要匹配您在应用程序仪表板上指定的 URL。因此,删除 ?code=AUTHORIZATION_CODE 并根据您的应用程序设置使用重定向 URL。
sessionConfiguration = new SessionConfiguration.Builder() .setClientId(ClientID) .setServerToken(ServerToken) .setRedirectUri("https://www.policyplan.in/UberCab/uber_redirectUri.php?code=AUTHORIZATION_CODE") .setEnvironment(SessionConfiguration.Environment.SANDBOX) .setScopes(Arrays.asList(Scope.RIDE_WIDGETS)) .build();
请尝试 post 清晰且格式正确的问题 - 在这种情况下,您似乎遇到了重定向 URL 的问题。如果您阅读 Uber documentation - 重定向 URL 需要匹配您在应用程序仪表板上指定的 URL。因此,删除 ?code=AUTHORIZATION_CODE 并根据您的应用程序设置使用重定向 URL。