regular user login? #128
-
I've set up a self-hosted fief instance locally, using docker-compose. Afterwards I:
Now I'm trying to login to my Whenever trying to visit: I get back an {
"detail": "Not Found"
} This seems odd to me, as I'd expect this to be the main page of my fief workspace. Moreover, I would expect to be able to visit this page with my browser and be offered some HTML with links to other relevant pages, like a login page. In trying to guess how I would login to the fief workspace, I'm trying to visit: http://test.localhost:8000/login I get back I would expect fief to allow regular users to log in and be able to edit their own properties, so I'm wondering if this is some bug, or if I missed something. Perhaps I'm trying the wrong URLs? But I haven't been able to find them in the documentation either. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
You did everything correctly, actually 🙂 However, for now, we don't have the ability to directly access the authentication pages from a given URL. You should always generate an authorization URL from one of our client SDK (using a valid Client ID and Secret on your test workspace). Besides, there is currently no UI allowing the user to edit its profile. That's something you should do from the API, for example by using the Those are limitations I have in mind, and I plan to implement a proper "user dashboard" users can access without an application context. |
Beta Was this translation helpful? Give feedback.
You did everything correctly, actually 🙂
However, for now, we don't have the ability to directly access the authentication pages from a given URL. You should always generate an authorization URL from one of our client SDK (using a valid Client ID and Secret on your test workspace).
Besides, there is currently no UI allowing the user to edit its profile. That's something you should do from the API, for example by using the
update_profile
method of the SDK.Those are limitations I have in mind, and I plan to implement a proper "user dashboard" users can access without an application context.