Description
For querying the key of a specified app. The key is used for authentication when you call an API.
- This function is intended for API callers.
Request parameters
Name | Type | Required? | Description |
---|---|---|---|
Action | String | Yes | Operation interface, which is a required parameter; value: DescribeAppSecurity. |
AppId | Long | Yes | ID of the app. |
Return parameters
Name | Type | Description |
---|---|---|
RequestId | String | ID of the current request. |
AppKey | String | App key. |
AppSecret | String | App password. |
CreatedTime | String | Key creation time (Greenwich mean time), which is the same as the app creation time. |
ModifiedTime | String | Key modification time (Greenwich mean time). |
Examples
Request example
https://apigateway.cn-qingdao.aliyuncs.com/?Action=DescribeAppSecurity
&AppId=20112314518278
&<Public request parameters>
Response example
XML
format
<DescribeAppSecurityResponse>
<RequestId>CEF72CEB-54B6-4AE8-B225-F876FF7BZ015</RequestId>
<AppKey>60030986</AppKey>
<AppSecret>c1ae97aaa7e45f21d10824bc44678fee</AppSecret>
<CreatedTime>2016-07-31T04:10:19Z</CreatedTime>
<ModifiedTime>2016-07-31T04:10:19Z</ModifiedTime>
</DescribeAppSecurityResponse>
JSON
format
{
"RequestId":"CEF72CEB-54B6-4AE8-B225-F876FF7BZ015",
"AppKey":"60030986",
"AppSecret":"c1ae97aaa7e45f21d10824bc44678fee",
"CreatedTime":"2016-07-31T04:10:19Z",
"ModifiedTime":"2016-07-31T04:10:19Z"
}