POST api/oauth2/authorize?refresh_token={refresh_token}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
refresh_token

string

Required

Body Parameters

None.

Response Information

Resource Description

OAuthToken
NameDescriptionTypeAdditional information
ReturnStatus

boolean

None.

ReturnCode

integer

None.

ReturnMessage

string

None.

AccessToken

string

None.

RefreshToken

string

None.

Expires

integer

None.

Type

string

None.

Response Formats

application/json, text/json

Sample:
{
  "ReturnStatus": true,
  "ReturnCode": 2,
  "ReturnMessage": "sample string 3",
  "AccessToken": "sample string 4",
  "RefreshToken": "sample string 5",
  "Expires": 6,
  "Type": "sample string 7"
}

application/xml, text/xml

Sample:
<OAuthToken xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ShifuMobileSecurityAPI_WEB.Models.Security">
  <AccessToken>sample string 4</AccessToken>
  <Expires>6</Expires>
  <RefreshToken>sample string 5</RefreshToken>
  <ReturnCode>2</ReturnCode>
  <ReturnMessage>sample string 3</ReturnMessage>
  <ReturnStatus>true</ReturnStatus>
  <Type>sample string 7</Type>
</OAuthToken>