Hi, I need to take the user directly to the process page or any other pages without showing the Login page. To achieve this, how to pass username and password as the Flowable URL parameters?
I am trying something as mentioned below:
http://admin:test@localhost:8080/flowable-task/workflow/#/processes,
http://admin:test@localhost:8080/flowable-idm/#
Can someone let me know how can this be achieved?
Thanks,
Subramanyam
On further searching about this, I found the below link, which says that embedded credentials in the requests is blocked -
https://www.chromestatus.com/feature/5669008342777856
As mentioned in the link for JIRA: https://community.atlassian.com/t5/Jira-questions/Passing-username-and-password-via-URL-to-jira/qaq-p/16679 I am looking for a similar approach like - “https://me.atlassian.net/?os_username=un&os_password=psw”.
Appreciate your suggestions.
I have the same issue. If you have resolved, you would comment the solution. Thanks
To our understanding, the flowable spring framework (security framework) is stopping us to pass credentials in the URL.
This is not possible: the UI and rest operations that the UI needs don’t work over basic auth, they have cookie authentication. Passing the user credentials also not a good idea wrt security as urls are not encrypted even over https.