rp
07/06/2021, 7:27 AMEmailPassword.init({
signInAndUpFeature: {
signInForm: {
style: {
headerSubtitle: {
display: "none", // this will hide the sign up button in the sign in form
}
}
}
},
override: {
components: {
EmailPasswordSignUp: (_) => (_) => {
return null;
}
}
}
})
You want to the below on the backend:
EmailPassword.init({
override: {
apis: (originalImpl) => {
return {
...originalImpl,
signUpPOST: undefined
}
}
}
})
rp
07/06/2021, 7:28 AMrp
07/06/2021, 7:28 AMOrszi
07/06/2021, 9:15 AMsahil-shubham
07/07/2021, 9:14 AMrp
07/07/2021, 9:21 AMsahil-shubham
07/07/2021, 9:48 AMrp
07/07/2021, 9:48 AMsahil-shubham
07/07/2021, 9:50 AMsahil-shubham
07/07/2021, 12:34 PMuser
scope the correct thing to ask here? Would asking just for the user:email
scope not work?
The issue being that asking for the whole user scope also gives the write permissions and not just the read.rp
07/07/2021, 12:36 PMsahil-shubham
07/07/2021, 12:44 PMrp
07/07/2021, 12:44 PMrp
07/07/2021, 12:45 PMsahil-shubham
07/07/2021, 12:45 PMsahil-shubham
07/07/2021, 12:46 PMrp
07/07/2021, 12:46 PMsahil-shubham
07/07/2021, 12:48 PMrp
07/07/2021, 12:48 PMrp
07/07/2021, 12:49 PMGithub.init({
clientId: ...,
clientSecret: ...,
scope: ["scope1", "scope2", ...]
})
sahil-shubham
07/07/2021, 12:52 PMuser
07/08/2021, 12:46 AMrp
07/08/2021, 4:07 AMthirdPartyAuthCodeResponse
, which is the response that google returned which contains all the user's info (depending on the scope provided) + access and refresh tokens to query google's APIs.rp
07/08/2021, 4:38 AMgusfune
07/08/2021, 10:29 AM404
on /api/auth/session/refresh
, during refresh session attempts. That's on the latest version.rp
07/08/2021, 10:29 AMgusfune
07/08/2021, 10:31 AMgusfune
07/08/2021, 10:31 AMgusfune
07/08/2021, 10:31 AM