C
C#3mo ago
Anthony

Google Api help

Has anyone tried implementing Google apis like maps and calender w their Asp.net core 6 application? Getting a 400 error, Google doesn't allow me the option to login
1 Reply
SpReeD
SpReeD3mo ago
Have you correctly authenticated to the service? e.g. settings an Authorization token like httpClient.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Token", "Your Oauth token"); Please check the google docs, RTFM.