I have an web application a running on my local machine. There is a link in the view page to go to Oracle Cloud Interface dashboard. Upon clicking the link, idcs login page appears. Provided the credentials, the dashboard appears.
Is there any way to automate the login process under the hood? I don't want users to put credentials every time when anyone wants to visit the dashboard page.
Have you tried using the token-based authentication method? You could use OCI CLI to get the token and then use it in your automation code. You can use the SDKs to automate the whole process and SDKs can use the same token for OCI authentication.
https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/clitoken.htm
Thanks.