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
I have a web interface and would like to add a cli tool too. Currently the user registers or signs in and gets a cookie. I would like to add a page create api token which creates a permanent until revoked session id and support using rest mode with these tokens. Is this a common use case or is it already possible?
The text was updated successfully, but these errors were encountered:
currently we do support rest Header tokens in the latest version. But we don't not support rest header tokens and Cookies at the same time currently. Also we do not support Forever Session Tokens at this time either.We never added them since they can be a security risk. instead its probably more advisable to set the Sessions to a set time frame and upon a renewal time to renew the ID. this would enhance Security upon the Server side. just its more inconvenient to the API users.It however is more worth thinking about this style to enforce a relogin via API to get new Session Tokens ever once in a while and have the end user of the API keep track of these Tokens and the timing.
Other than that if it is something needed Feel free to request it OR make a PR to add this.
I have a web interface and would like to add a cli tool too. Currently the user registers or signs in and gets a cookie. I would like to add a page create api token which creates a permanent until revoked session id and support using rest mode with these tokens. Is this a common use case or is it already possible?
The text was updated successfully, but these errors were encountered: