weeblyで作成したウェブサイトにGoogleAnalyticsを使用しています。私はGoogleAPIを使用して、すべてをプログラムで実装しています。
OAuthフロー中に直面している問題は、次のエラーが発生することです。
Error: redirect_uri_mismatch
The redirect URI in the request:localhost:34190/Callback did not match a registered redirect URI
Request Details
scope=https://www.googleapis.com/auth/analytics.readonly
response_type=code
access_type=online
redirect_uri=local_host:34190/Callback
display=page
client_id={CLIENT_ID}.apps.googleusercontent.com
私のグーグルAPIコンソールの設定は次のとおりです。
Redirect URI: localhost/oauth2callback
JavaScript origins: localhost
いったいなぜ私redirect_uri
がlocalhost:34190/Callback
それを次のように設定したのhttp://mya.com/oauth2callback
ですか?
私がopenauthのために書いたコード:
public static void main(String[] args) throws Exception {
Analytics analytics = initializeAnalytics();
}
private static Analytics initializeAnalytics() throws Exception {
Credential credential = authorize();
}
private static Credential authorize() throws Exception {
GoogleClientSecrets clientSecrets = GoogleClientSecrets.load(
JSON_FACTORY, Testcode.class.getResourceAsStream("/client_secrets.json"));
FileCredentialStore credentialStore = new FileCredentialStore(
new File(System.getProperty("user.home"), ".credentials/analytics.json"),
JSON_FACTORY);
GoogleAuthorizationCodeFlow flow = new GoogleAuthorizationCodeFlow.Builder(
HTTP_TRANSPORT, JSON_FACTORY, clientSecrets,
Collections.singleton(AnalyticsScopes.ANALYTICS_READONLY)).setCredentialStore(
credentialStore).build();
return new AuthorizationCodeInstalledApp(flow, new LocalServerReceiver())
.authorize(clientSecrets.getDetails().getClientId());
}
このエラーを取り除くにはどうすればよいですか?