Replies: 3 comments 1 reply
-
|
this is not possible. you need to use/write an authentication service. |
Beta Was this translation helpful? Give feedback.
-
|
would it be easier if i'd were to use flask basic authentication? |
Beta Was this translation helpful? Give feedback.
-
|
I'd suggest just using Deta Base and storing something like a token or a string as a cookie and in a base. For the former, you could use an encoded JWT, for example, and for the latter, you could just store the string as a key and any further information you need about a user as the value. Do keep in mind that the latter will force you to make requests to the base every time a user goes to a page, whereas with the JWT, you just store basic user information in there. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
how do I log in with my api key from chrome into my python micro that is using flask?
Beta Was this translation helpful? Give feedback.
All reactions