Modifies the information about a specified 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:UpdateApplication | Write |
|
| none |
Request parameters
Parameter | Type | Required | Description | Example |
---|---|---|---|---|
AppId | string | Yes | The ID of the application. | 472457090344041**** |
NewDisplayName | string | No | The display name. | NewApp |
NewRedirectUris | string | No | The callback URL. If you enter multiple callback URLs, separate them with semicolons (;). | https://www.example.com |
NewPredefinedScopes | string | No | The permission that is granted on the application. For more information about the application permission scope, see OAuth scopes. You can also call the ListPredefinedScopes operation to query the permissions that are supported by different types of applications. If you enter multiple permissions, separate them with semicolons (;). The new value of this parameter overwrites the original value, and the permission specified by the new value takes effect. For example, if the original value is | openid |
NewRequiredScopes | string | No | The required permission. You can specify one or more permissions for the If you also specify the If you enter multiple permissions, separate them with semicolons (;). The new value of this parameter overwrites the original value, and the required permission specified by the new value takes effect. 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.
| profile;aliuid |
NewSecretRequired | boolean | No | Specifies whether a secret is required. Valid values:
Note
| true |
NewAccessTokenValidity | integer | No | The validity period of the access token. Valid values: 900 to 10800. Unit: seconds. | 3600 |
NewRefreshTokenValidity | integer | No | The validity period of the refresh token. Valid values: 7200 to 31536000. Unit: seconds. | 7776000 |
NewIsMultiTenant | boolean | No | Specifies whether the application can be installed by using other Alibaba Cloud accounts. Valid values:
| true |
Response parameters
Examples
Sample success responses
JSON
format
{
"RequestId": "6616F09B-2768-4C11-8866-A8EE4C4A583E",
"Application": {
"DisplayName": "NewApp",
"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.",
"Name": "openid",
"Required": true
}
]
}
},
"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 | ||||||
|