kumkee
04/01/2023, 9:07 PMauthorisationURL: "http://localhost:3000/auth/callback/google"
. Does it actually means authorisationURL: website_domain + "/callback/google",
?rp
04/02/2023, 5:56 AMauthorisationURL: "http://localhost:3000/auth/callback/google"
means that you should replace http://localhost:3000
with your own website domain. So it would be authorisationURL: websiteDomain + websiteBasePath + "/callback/google"
. This is where the authorization code will be sent back to after the user logs in with their Google account. You should replace google
with the name of the provider you are using for third-party login. For example, if you are using Facebook, it would be authorisationURL: websiteDomain + websiteBasePath + "/callback/facebook"
.kumkee
04/03/2023, 6:12 PMrp
04/03/2023, 7:08 PM