Arif
BABetter Auth
•Created by Arif on 4/1/2025 in #help
Social login Account creation with additional field
and what is the purpose of
loginHInt
? where can I access it? In the doc, there are no mention about the options we can pass to social provider.10 replies
BABetter Auth
•Created by Arif on 4/1/2025 in #help
Social login Account creation with additional field
Please have a look, on the before hook
sign-in/social
you can see the query I am passing, can I somehow pass that to the next request which is the callback/:id
? Thanks for replying.10 replies
BABetter Auth
•Created by Arif on 4/1/2025 in #help
Social login Account creation with additional field
Sure, Thanks!
Some more context: I noticed that the query parameters I passed are available in the before and after hooks of the
sign-in/social
endpoint (a POST
request). However, after successful execution, when the provider redirects to callback/:id
(a GET
request), the initially passed query parameters are lost.
In Passport.js, we can pass additional state, which is retained in the callback URL
My main goal is to store some additional data, when creating user account through social provider. How can I achieve it. If you could give some clue that would be helpful.10 replies
BABetter Auth
•Created by Arif on 4/1/2025 in #help
Social login Account creation with additional field
@Ping Please have a look. Is it possible to pass additional info?
10 replies
BABetter Auth
•Created by Arif on 4/2/2025 in #help
Dynamically create Role and Permission.
Yeah, can store them on DB but seems too much work. If Better Auth could provide a native api for this that would be awesome.
I have another question regarding social login. I'll mention you in the thread, please take a look if you can. Thanks!
11 replies
BABetter Auth
•Created by Arif on 4/2/2025 in #help
Dynamically create Role and Permission.
@Ping
11 replies
BABetter Auth
•Created by Arif on 4/2/2025 in #help
Dynamically create Role and Permission.
===============
It works, but only as long as the server is up. Once we close the server its gone. Since, it is not being stored anywhere in the database, so I guess currently we cannot dynamically manage creating roles , permissions in Better Auth?
11 replies
BABetter Auth
•Created by Arif on 4/2/2025 in #help
Dynamically create Role and Permission.
Tried this way, though it gives a successful response, but I guess, still it is required to pass this newRole to betterAuth configuration,
Since, better auth requires them on initialization time. So then I tried this way by using
roles
object and pass it as reference.11 replies
BABetter Auth
•Created by Arif on 4/1/2025 in #help
Social login Account creation with additional field
Note: I have tried database hooks, Query params
userType
is accessible on path sign-in/social
, but not in callback/:id
. So, during dbHooks.user.create process, I could not access userType value. In database hooks only info provided by the social provider (for example GoogleProfile info) is present.10 replies