GET v1/auth/request?provider={provider}&redirect={redirect}
Creates a new authentication request.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| provider |
Authentication Provider |
string |
Required |
| redirect |
Post Sign-in Redirection Path |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
AuthRequestInfo| Name | Description | Type | Additional information |
|---|---|---|---|
| State | string |
None. |
|
| Uri | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"State": "sample string 1",
"Uri": "sample string 2"
}
application/xml, text/xml
Sample:
<AuthRequestInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Kimin.Cloud.Api.Models"> <State>sample string 1</State> <Uri>sample string 2</Uri> </AuthRequestInfo>