此CURL命令中的dgrant_type = client_credentials是什么?

时间:2018-03-09 17:24:08

标签: curl post

curl https://api.app.com/oauthpreview/token --user key:secret -XPOST -dgrant_type=client_credentials

什么是dgrant_type=client_credentials?我将使用http客户端将此示例curl命令重写为Ruby代码。

1 个答案:

答案 0 :(得分:0)

(首先:使用-X POST时不应使用-d,已经隐含了

-d指定要在HTTP请求正文中发送的内容。因此,此命令将在正文中发送grant_type=client_credentials

在您调用命令时添加--trace-ascii dump,然后检查dump文件,以确切了解发送和接收的卷曲。