Hello saguaros,
can you please try another time with same credentials.
I tested this further and based on Google error explanation, I had to switch the configuration for OAuth 2.0-Client-ID from WebClient to Desktop
But now the error in Google side is as follows:
Fehler 400: invalid_request
The out-of-band (OOB) flow has been blocked in order to keep users secure. Follow the Out-of-Band (OOB) flow migration guide linked in the developer docs below to migrate your app to an alternative method.
Anfragedetails: redirect_uri=urn:ietf:wg:oauth:2.0:oob flowName=GeneralOAuthFlow
I checked with the support from ChatGPT and the reply was:
Solution: Migrating from the OOB Flow to a Redirect URI
1. Update Your Application:
• Ensure your application no longer uses the deprecated OOB flow (urn:ietf:wg:oauth:2.0:oob).
• Instead, set the redirect to http://localhost or a custom local port, e.g., http://localhost:8080.
2. Client Configuration in the Cloud Console:
• Your current desktop client ID is configured correctly, and no changes are required in the Google Cloud Console.
• For desktop applications, http://localhost is automatically accepted as the Redirect URI.
3. Check Your Code/Library:
• If you’re using a library such as google-auth-library or oauth2client, make sure it is up to date.
• The configuration for the redirect URI in your code should look like this:
redirect_uri = 'http://localhost'
• Remove any references to urn:ietf:wg:oauth:2.0:oob.
I am now a little bit lost here, because I have followed the instructions from Joomlart site
https://www.joomlart.com/documentation/joomla-module/ja-google-analytics-for-joomla
and I authorized our domain correctly and there are no other options for configuration.
So we are stucked.
Can you please help
Thanks
Markus