Authenticate the user using LINE login. This endpoint should be called from the user's browser. It will redirect the User Agent to the LINE IDP and redirect back to Transmit upon successful authentication. Once Transmit verifies the authentication response, the User Agent will be redirected to the redirect_uri specified in the request. This URI will now include a code parameter in the query, which will be later exchanged for a token via the /oidc/token endpoint.
URI to redirect to upon completion of the IDP flow. This is the server GET endpoint used to call the token endpoint, and should accept "code" as a query parameter. This URI must also be configured as an allowed redirect URI in the Transmit Admin Portal
A stringified object used to request additional claims in the ID token, such as roles, permissions, and other user profile data. The structure is per the OIDC Standard. For supported claims and how to request custom claims, see the ID Token Reference. Note: You should stringify the value.
- Sandbox environmenthttps://api.sbx.transmitsecurity.io/cis/v1/auth/line
- US production environmenthttps://api.transmitsecurity.io/cis/v1/auth/line
- EU production environmenthttps://api.eu.transmitsecurity.io/cis/v1/auth/line
- CA production environmenthttps://api.ca.transmitsecurity.io/cis/v1/auth/line
- AU production environmenthttps://api.au.transmitsecurity.io/cis/v1/auth/line
- JP production environmenthttps://api.gasne1-ts01.transmitsecurity.io/cis/v1/auth/line
curl -i -X GET \
'https://api.sbx.transmitsecurity.io/cis/v1/auth/line?client_id=DgsdfhSDsdfhtSDFXCCXBVMKPws345yscv2345XCZV&redirect_uri=https%3A%2F%2Fwww.example.com%2Flogin&create_new_user=false&resource=string&require_mfa=true&claims=%7B%22id_token%22%3A%7B%22roles%22%3Anull%7D%7D&state=string&nonce=string&org_id=string'