Skip to content

Get Authentication Url

connectparticipant_get_authentication_url R Documentation

Retrieves the AuthenticationUrl for the current authentication session for the AuthenticateCustomer flow block

Description

Retrieves the AuthenticationUrl for the current authentication session for the AuthenticateCustomer flow block.

For security recommendations, see Amazon Connect Chat security best practices.

  • This API can only be called within one minute of receiving the authenticationInitiated event.

  • The current supported channel is chat. This API is not supported for Apple Messages for Business, WhatsApp, or SMS chats.

Usage

connectparticipant_get_authentication_url(SessionId, RedirectUri,
  ConnectionToken)

Arguments

SessionId

[required] The sessionId provided in the authenticationInitiated event.

RedirectUri

[required] The URL where the customer will be redirected after Amazon Cognito authorizes the user.

ConnectionToken

[required] The authentication token associated with the participant's connection.

Value

A list with the following syntax:

list(
  AuthenticationUrl = "string"
)

Request syntax

svc$get_authentication_url(
  SessionId = "string",
  RedirectUri = "string",
  ConnectionToken = "string"
)