i degin an app with React UI - Asp.netCore - Squidex
i want to ui call api from asp.net core and aspnetcore pass api to squidex
but the first step i don’t know how to implement Authentication and Authorization .
how to validate login and get hashToken for any user and pass with any request
thanks
i want to implement login and logout with user name and password and get token to call any api and squidex manage authentication/Authorization user
and know really confused
i realy like squidex and want to use this
create Client for any user and assign special role to this client
when user login and the username and password validation is ok
get token from client which belong to this user
and add token to header of any request
could you please tell me this scenario is ok or any advice for create better architect ?
You cannot create thousands of clients, Squidex is not designed for that. I would just use the user table for authentication and use one client for all your users. There is a pending PR that allows users to only see their content, but in general Squidex does not work well when directly accessed by end users like in your use.
You could also implement a middleware ( API layer) for authentication and authorization of course.