理解 CURL -X POST 命令的问题
Problems understanding the CURL -X POST command
我正在尝试使用 Appdynamics 的配置创建用户 API
我正在尝试使用此 curl 命令,但不确定 --user 之后的参数是什么。
curl -X POST --user user1@customer1:secret http://<controller host_ip>/<other segments>
这是 AppDynamics 特有的,更好地了解租赁或我的用户是什么,或者我可以在哪里创建用户会有所帮助。
我还应该使用 pem 密钥与我的控制器主机通信。
这是我所指的文档页面的 link;
https://docs.appdynamics.com/display/PRO44/Configuration+API#ConfigurationAPI-CreateandModifyAppDynamicsUsers
curl 的 --user
命令行选项为请求设置 HTTP 身份验证 (username:password
)。
对于 AppDynamics 的配置 API(它是其控制器 API 的子集),user1@customer1:secret
是您的帐户凭据,格式为 here :
customer1
是 AppDynamics 租户帐户名
user1
是该帐户中的用户
secret
是密码
我正在尝试使用 Appdynamics 的配置创建用户 API
我正在尝试使用此 curl 命令,但不确定 --user 之后的参数是什么。
curl -X POST --user user1@customer1:secret http://<controller host_ip>/<other segments>
这是 AppDynamics 特有的,更好地了解租赁或我的用户是什么,或者我可以在哪里创建用户会有所帮助。 我还应该使用 pem 密钥与我的控制器主机通信。
这是我所指的文档页面的 link; https://docs.appdynamics.com/display/PRO44/Configuration+API#ConfigurationAPI-CreateandModifyAppDynamicsUsers
curl 的 --user
命令行选项为请求设置 HTTP 身份验证 (username:password
)。
对于 AppDynamics 的配置 API(它是其控制器 API 的子集),user1@customer1:secret
是您的帐户凭据,格式为 here :
customer1
是 AppDynamics 租户帐户名user1
是该帐户中的用户secret
是密码