使用 python-maas-client 进行 POST 请求

使用 python-maas-client 进行 POST 请求

我们可以使用python-maas-client来访问maas API。

我需要知道如何使用 python-maas-client 向 maas 执行 post 请求。

以下是重要链接:

MAAS API 文档链接:

https://maas.ubuntu.com/docs/api.html

制作GET请求示例:

如何使用 curl 查询 maas API

请有人向我提供一个示例帖子请求。

答案1

sshKeys = {"key": [keyValue]}
maas_access.post(u"account/prefs/sshkeys/", "new", **sshKeys)

上述代码将使用 maas-api 将 ssh 密钥发布到 maas。

相关内容