Joget DX 8 Stable Released
The stable release for Joget DX 8 is now available, with a focus on UX and Governance.
...
Code Block | ||
---|---|---|
| ||
/web/json/workflow/assignment/list/pending?j_username=user1&j_password=password1 |
or If using a hashed password:
Code Block | ||
---|---|---|
| ||
/web/json/workflow/assignment/list/pending?j_username=user1&hash=D012B772672A55A0B561EAA53CA7734E |
Under the System Settings > General Setting, you are able to set Set a Master Login Username and Master Login Password. Password under System Settings > General Setting, By setting these values, a different user can be specified by passing in the loginAs parameter.
...
Assuming the master login username and master login password is "master" and "master" respectively, the following URL can be used to represent the user "user1":
Code Block | ||
---|---|---|
| ||
/web/json/workflow/assignment/list/pending?j_username=master&j_password=master&loginAs=user1 |
There's a hash key for the combination of Master Login User and Master Login Password configured. By using this hash (assuming it's "hashKey"), API authentication can be done without exposing the Master Login Password.
...