Skip to content
Snippets Groups Projects
Unverified Commit 4067184e authored by Walter Leibbrandt's avatar Walter Leibbrandt Committed by GitHub
Browse files

Improve Google auth token error message (#11803)

* Improve error message for invalid Google auth token

* Don't include punctuation in link text

* Add tip about providing full Google client ID

* Update test to check for updated error message
parent bfc269c4
No related branches found
No related tags found
No related merge requests found
......@@ -126,9 +126,12 @@ export default class SettingsSingleSignOnForm extends Component {
href="https://developers.google.com/identity/sign-in/web/devconsole-project"
target="_blank"
>
here.
here
</a>
)}`}
)}.`}
</p>
<p className="text-medium">
{t`Be sure to include the full client ID, including the apps.googleusercontent.com suffix.`}
</p>
<InputBlurChange
className="SettingsInput AdminInput bordered rounded h3"
......
......@@ -271,7 +271,9 @@
(let [audience (:aud <>)
audience (if (string? audience) [audience] audience)]
(when-not (contains? (set audience) client-id)
(throw (ex-info (tru "Google Auth token meant for a different site.") {:status-code 400}))))
(throw (ex-info (str (deferred-tru "Google Auth token appears to be incorrect. ")
(deferred-tru "Double check that it matches in Google and Metabase."))
{:status-code 400}))))
(when-not (= (:email_verified <>) "true")
(throw (ex-info (tru "Email is not verified.") {:status-code 400})))))))
......
......@@ -370,7 +370,7 @@
[(-> e ex-data :status-code) (.getMessage e)])))))
(testing "for invalid data."
(is (= [400 "Google Auth token meant for a different site."]
(is (= [400 "Google Auth token appears to be incorrect. Double check that it matches in Google and Metabase."]
(try
(#'session-api/google-auth-token-info
{:status 200
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment