We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40b498a commit f731b31Copy full SHA for f731b31
src/Umbraco.Cms.Integrations.OAuthProxy/Configuration/ServiceConfiguration.cs
@@ -16,7 +16,7 @@ public static class ServiceConfiguration
16
{ "HubspotForms", "oauth/v1/token" },
17
{ "Semrush", "oauth2/access_token" },
18
{ "Shopify", "oauth/access_token" },
19
- { "Google", "o/oauth2/token" }
+ { "Google", "token"}
20
};
21
22
public static void AddServiceClients(this IServiceCollection services)
@@ -39,7 +39,7 @@ public static void AddServiceClients(this IServiceCollection services)
39
});
40
services.AddHttpClient("GoogleToken", c =>
41
{
42
- c.BaseAddress = new Uri("https://accounts.google.com/");
+ c.BaseAddress = new Uri("https://oauth2.googleapis.com/");
43
44
}
45
0 commit comments