You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
API requests have a fdi-version header for versioning purposes. The format is a X.Y,X1.Y1... for example 1.2,3.4,1.1. In the driver, we must take care to remove spaces and then get the latest common version between the two SDKs (like we do for CDI)
Drivers must:
Extracting the latest, common (between frontend and backend SDK) FDI version from the request and passing that to the module. If no FDI is present, then assume the latest FDI supported by the backend SDK. If FDI is present, but none matching, then throw an appropriate error.
This also needs to be exposed in Access-Control-Allow-Headers
If it is missing, we assume the latest version supported by the driver.
supertokens-website
supertokens-auth-react
ios
android
react native
nodejs
javalin
flask
fastapi
golang
laravel
The text was updated successfully, but these errors were encountered:
Frontend SDKs must
fdi-version
header for versioning purposes. The format is aX.Y,X1.Y1...
for example1.2,3.4,1.1
. In the driver, we must take care to remove spaces and then get the latest common version between the two SDKs (like we do for CDI)Drivers must:
Access-Control-Allow-Headers
The text was updated successfully, but these errors were encountered: