更新时间:2024-10-17 GMT+08:00
获取项目ID和名称
在调用接口的时候,部分请求中需要填入项目ID(project_id)或项目名称(project name),所以需要获取到项目ID和名称。
从控制台获取项目ID和名称
- 登录管理控制台。
- 在页面右上角单击用户名,在下拉列表中单击“我的凭证”,进入“API凭证”页面。
- 在项目列表中查看“项目ID”和“项目”(“项目”即项目名称)。
图1 查看项目ID和名称
调用API获取项目ID
项目ID还用通过调用查询指定条件下的项目信息API获取。
获取项目ID的接口为“GET https://{iam-endpoint}/v3/projects”,其中{iam-endpoint}为IAM的终端节点,可以参考终端节点获取,接口的认证鉴权请参见认证鉴权。
响应示例如下,例如CSS部署的区域为“xxx”,在响应消息体中搜索“name”为“xxx”,其对应的“projects”下的“id”即为项目ID。
{ "projects": [ { "domain_id": "65382450e8f64ac0870cd180d14exxxx", "is_domain": false, "parent_id": "65382450e8f64ac0870cd180d14exxxx", "name": "xxx", //项目名称,即部署区域名称 "description": "", "links": { "next": null, "previous": null, "self": "https://www.example.com/v3/projects/a4a5d4098fb4474fa22cd05f897dxxxx" }, "id": "a4a5d4098fb4474fa22cd05f897dxxxx", //项目ID "enabled": true } ], "links": { "next": null, "previous": null, "self": "https://www.example.com/v3/projects" } }
父主题: 公共参数