第 5 章 使用各种语言的 API 请求
您可以查看从 curl、Ruby 或 Python 向 Red Hat Satellite 发送 API 请求示例。
5.1. 在 curl 中调用 API
您可以将 curl
与 Satellite API 搭配使用来执行各种任务。
Red Hat Satellite 需要使用 HTTPS,默认是主机识别的证书。如果您还没有添加 Satellite 服务器证书,如 第 4.1 节 “SSL 身份验证概述” 所述,您可以使用-- insecure
选项绕过证书检查。
对于用户身份验证,您可以使用-- user
选项以 form- user username:password
提供 Satellite 用户凭据,或者如果您不包含密码,命令会提示您输入它。要降低安全风险,请不要将密码包含在命令中,因为它会成为 shell 历史记录的一部分。本节中的示例仅包含简单性的密码。
请注意,如果您使用- silent
选项,则 curl
不会显示进度计量或任何错误消息。
本章中的示例使用 Python json.tool
模块格式化输出。
5.1.1. 将 JSON 数据传递给 API 请求
您可以使用 API 请求将数据传递给 Satellite 服务器。数据必须采用 JSON 格式。当使用 the-data 选项指定 JSON 数据时,您必须使用-- header
选项设置以下 HTTP 标头:
--header "Accept:application/json" \ --header "Content-Type:application/json"
使用以下选项之一将数据与- data 选项一起包含
:
JSON 格式的字符串
将带引号的 JSON 格式的数据用大括号 {}
括起。在传递 JSON 类型参数的值时,您必须用反斜杠 \
转义引号 "
。例如,在大括号中,您必须将 "示例 JSON 变量"
格式化为 \"Example JSON Variable\"
:
--data {"id":44, "smart_class_parameter":{"override":"true", "parameter_type":"json", "default_value":"{\"GRUB_CMDLINE_LINUX\": {\"audit\":\"1\",\"crashkernel\":\"true\"}}"}}
JSON 格式的文件
未加引号的 JSON 格式数据包含在文件中,并由 @
符号和文件名指定。例如:
--data @file.json
将外部文件用于 JSON 格式数据有以下优点:
- 您可以使用您首选的文本编辑器。
- 您可以使用语法检查程序来查找并避免错误。
- 您可以使用工具检查 JSON 数据的有效性或重新格式化它。
使用 json_verify
工具检查 JSON 文件的有效性:
$ json_verify < file.json
5.1.2. 检索资源列表
本节概述了如何将 curl
与 Satellite 6 API 搭配使用,以从 Satellite 请求信息。这些示例包括请求和响应。每个部署都有不同的结果。
列出用户
本例是返回 Satellite 资源列表(本例中为 Satellite 用户)的基本请求。此类请求返回嵌套在元数据中的数据列表,而其他请求类型则仅返回实际对象。
请求示例:
$ curl --request GET --user My_User_Name:My_Password \ https://satellite.example.com/api/users | python3 -m json.tool
响应示例:
{ "page": 1, "per_page": 20, "results": [ { "admin": false, "auth_source_id": 1, "auth_source_name": "Internal", "created_at": "2018-09-21 08:59:22 UTC", "default_location": null, "default_organization": null, "description": "", "effective_admin": false, "firstname": "", "id": 5, "last_login_on": "2018-09-21 09:03:25 UTC", "lastname": "", "locale": null, "locations": [], "login": "test", "mail": "example@domain.com", "organizations": [ { "id": 1, "name": "Default Organization" } ], "ssh_keys": [], "timezone": null, "updated_at": "2018-09-21 09:04:45 UTC" }, { "admin": true, "auth_source_id": 1, "auth_source_name": "Internal", "created_at": "2018-09-20 07:09:41 UTC", "default_location": null, "default_organization": { "description": null, "id": 1, "name": "Default Organization", "title": "Default Organization" }, "description": "", "effective_admin": true, "firstname": "Admin", "id": 4, "last_login_on": "2018-12-07 07:31:09 UTC", "lastname": "User", "locale": null, "locations": [ { "id": 2, "name": "Default Location" } ], "login": "admin", "mail": "root@example.com", "organizations": [ { "id": 1, "name": "Default Organization" } ], "ssh_keys": [], "timezone": null, "updated_at": "2018-11-14 08:19:46 UTC" } ], "search": null, "sort": { "by": null, "order": null }, "subtotal": 2, "total": 2 }
5.1.3. 创建和修改资源
您可以使用 curl
操作 Satellite 服务器上的资源。对 Satellite 的 API 调用需要 json
格式的数据。如需更多信息,请参阅 第 5.1.1 节 “将 JSON 数据传递给 API 请求”。
创建用户
本例通过在 data- data
选项中提供所需的信息来创建用户。
请求示例:
$ curl --header "Accept:application/json" \ --header "Content-Type:application/json" --request POST \ --user My_User_Name:My_Password \ --data "{\"firstname\":\"Test Name\",\"mail\":\"test@example.com\",\"login\":\"test_user\",\"password\":\"password123\",\"auth_source_id\":1}" \ https://satellite.example.com/api/users | python3 -m json.tool
修改用户
这个示例修改 创建用户 中创建的 test_user
的名称和登录。
请求示例:
$ curl --header "Accept:application/json" \ --header "Content-Type:application/json" --request PUT \ --user My_User_Name:My_Password \ --data "{\"firstname\":\"New Test Name\",\"mail\":\"test@example.com\",\"login\":\"new_test_user\",\"password\":\"password123\",\"auth_source_id\":1}" \ https://satellite.example.com/api/users/8 | python3 -m json.tool