curl https://api.app.com/oauthpreview/token --user key:secret -XPOST -dgrant_type=client_credentials
什么是dgrant_type=client_credentials
?我将使用http客户端将此示例curl命令重写为Ruby代码。
答案 0 :(得分:0)
(首先:使用-X POST
时不应使用-d
,已经隐含了
-d
指定要在HTTP请求正文中发送的内容。因此,此命令将在正文中发送grant_type=client_credentials
。
在您调用命令时添加--trace-ascii dump
,然后检查dump
文件,以确切了解发送和接收的卷曲。