Hi Team, Need to integrate `Core driver interface`...
# support-questions-legacy
k
Hi Team, Need to integrate
Core driver interface
can anyone please help me to setup in my project? need to get user meta details via Core driver interface. and also one more question can we exposed signIn and signUp api? why i am asking this because i have to add some logic when user is logged in or signup.
n
Hi @kamyab , What do you mean by need to integrate the Core driver interface?
k
want to integrate https://app.swaggerhub.com/apis/supertokens/CDI/2.16.2 in my application. ||`let's assume i need to integrate
/recipe/userâ €
api in my fastapi code. when i am trying to access this it gives not found error.`||
n
Right so you would need to integrate our backend SDK in your codebase (
supertokens-python
in your case)
Then you can use the functions in the backend SDK which would call the CDI for you
You do not need to interact with it directly
If you can explain a little more about your use case I can help with specifics
k
Hi @nkshah2
can i get call back function after sign in success? or webhook?
i have to create one new table on diffrent database when user is created successfully.
n
Do you want this on your frontend or backend?
k
backend
n
You can use our override feature: https://supertokens.com/docs/emailpassword/advanced-customizations/backend-functions-override/usage You can override the methods you want (both sign in and sign up in your case) and do some custom logic before or after calling the SuperTokens original function
For your use case you would want to call original first and then do your logic
k
Thanks, let me check with signup first