Intuned.json
settings you will find auth session configuration pane.
api
folder.Check/Refresh as part of the API - match deployed behavior
:Load auth-session and run API - skip check/refresh
:Reuse session if open
:auth-sessions
folder will following APIs that need to be defined:
create.ts
- needs to contain the end to end automation workflow that can navigate to the target service, enter user’s credentials, resolve any challenges, and complete authentication.check.ts
- needs to contain a simple workflow that is able to validate that the auth session is valid.refresh.ts
- needs to contain the workflow required to update or refresh the auth session.auth-sessions
folder will only contain the following API that need to be defined:
check.ts
- needs to contain a simple workflow that is able to validate that the auth session is valid.
create.ts
API doesn’t need to be defined because the recording experience will prompt the end user to enter their credentials on a streaming browser. Upon completion of the sign in flow the auth session will be captured and the pop up browser will be closed.
refresh.ts
API doesn’t need to be defined because Recorder-based auth sessions do not support refreshing expired auth sessions.