curl命令的等效http请求

时间:2015-10-14 16:19:12

标签: http curl oauth

我正在使用以下curl命令处理OAUTH 2.0,这在我的终端中工作正常。

命令 -

curl -u testclient1:testpass1 http://localhost/oauth2-server/token.php -d 'grant_type=password&username=bshaffer&password=brent123'

我想知道上面的CURL命令的等效HTTP请求是什么,这样我就可以使用guzzle(相对容易)来发出获取令牌的HTTP请求。我已经尝试了很多组合,但没有找到正确的方法。

1 个答案:

答案 0 :(得分:2)

最后经过大量的谷歌搜索后,我设法找到了该CURL命令的等效HTTP请求。

这是命令 -

http://testclient1:testpass1@localhost/oauth2-server/token.php?grant_type=password&username=bshaffer&password=brent123