-
Am trying to intergrate with my fast-api, this is the response i get Authorization URL: http://fief.localhost:8000/authorize Token URL: http://fief.localhost:8000/api/token Flow: authorizationCode Authorize am also hosting my fastapi on port 9000 my redirect uri is http://fief.localhost:8000/docs/oauth2-redirect what am I missing? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Check that the following Redirect URI is allowed on your Fief Client: http://localhost:8000/docs/oauth2-redirect (This address here should be your FASTAPI address) for me its http://localhost:9000/docs/oauth2-redirect. I forced my FastApi instance by this command "uvicorn app:app --host localhost --port 9000 --reload". |
Beta Was this translation helpful? Give feedback.
Check that the following Redirect URI is allowed on your Fief Client: http://localhost:8000/docs/oauth2-redirect
(This address here should be your FASTAPI address) for me its http://localhost:9000/docs/oauth2-redirect. I forced my FastApi instance by this command "uvicorn app:app --host localhost --port 9000 --reload".