Creates an application.
Debugging
Authorization information
The following table shows the authorization information corresponding to the API. The authorization information can be used in the Action
policy element to grant a RAM user or RAM role the permissions to call this API operation. Description:
- Operation: the value that you can use in the Action element to specify the operation on a resource.
- Access level: the access level of each operation. The levels are read, write, and list.
- Resource type: the type of the resource on which you can authorize the RAM user or the RAM role to perform the operation. Take note of the following items:
- The required resource types are displayed in bold characters.
- If the permissions cannot be granted at the resource level,
All Resources
is used in the Resource type column of the operation.
- Condition Key: the condition key that is defined by the cloud service.
- Associated operation: other operations that the RAM user or the RAM role must have permissions to perform to complete the operation. To complete the operation, the RAM user or the RAM role must have the permissions to perform the associated operations.
Operation | Access level | Resource type | Condition key | Associated operation |
---|---|---|---|---|
ram:CreateApplication | Write |
|
| none |
Request parameters
Parameter | Type | Required | Description | Example |
---|---|---|---|---|
DisplayName | string | Yes | The display name of the application. The name can be up to 24 characters in length. | myapp |
AppType | string | Yes | The type of the application. Valid values:
| WebApp |
RedirectUris | string | No | The callback URL. If you enter multiple callback URLs, separate them with semicolons (;). | https://www.example.com |
SecretRequired | boolean | No | Indicates whether a secret is required. Valid values:
Note
| true |
AccessTokenValidity | integer | No | The validity period of the access token. Valid values: 900 to 10800. Unit: seconds. Default value: 3600. | 3600 |
RefreshTokenValidity | integer | No | The validity period of the refreshed token. Valid values: 7200 to 31536000. Unit: seconds. Default value:
| 2592000 |
PredefinedScopes | string | No | The scope of application permissions. For more information about the application permission scope, see Open authorization scope. You can also call the ListPredefinedScopes operation to obtain the permission scopes supported by different types of applications. If you enter multiple permission scopes, separate them with semicolons (;). | aliuid |
RequiredScopes | string | No | The required permission. You can specify one or more permissions for the If you enter multiple permissions, separate them with semicolons (;). Note
If the permission that you specify for the RequiredScopes parameter is not included in value of the PredefinedScopes parameter, the permission does not take effect.
| aliuid;profile |
IsMultiTenant | boolean | No | Indicates whether the application can be installed by using other Alibaba Cloud accounts. Valid values:
| false |
AppName | string | Yes | The application name. The name can be up to 64 characters in length. The name can contain letters, digits, periods (.), underscores (_), and hyphens (-). | myapp |
Response parameters
Examples
Sample success responses
JSON
format
{
"RequestId": "6616F09B-2768-4C11-8866-A8EE4C4A583E",
"Application": {
"DisplayName": "myapp",
"AccessTokenValidity": 3600,
"SecretRequired": true,
"AccountId": "177242285274****",
"CreateDate": "2020-10-23T08:06:57Z",
"AppName": "myapp",
"RedirectUris": {
"RedirectUri": [
"https://www.example.com"
]
},
"UpdateDate": "2020-10-23T08:06:57Z",
"DelegatedScope": {
"PredefinedScopes": {
"PredefinedScope": [
{
"Description": "Obtain the OpenID of the user. This is the default permission that you cannot remove.",
"Required": true,
"Name": "openid"
}
]
}
},
"AppId": "472457090344041****",
"RefreshTokenValidity": 7776000,
"IsMultiTenant": true,
"AppType": "WebApp"
}
}
Error codes
For a list of error codes, visit the Service error codes.
Change history
Change time | Summary of changes | Operation | ||||||
---|---|---|---|---|---|---|---|---|
2023-11-23 | The request parameters of the API has changed. The response structure of the API has changed | see changesets | ||||||
|