将cURL [GET]请求转换为Guzzle

时间:2017-03-01 18:52:53

标签: php curl guzzle

我有这个卷曲请求:

curl -k -H"Authorization: Bearer 905290532905902390523905krai20" https://example.com/something?limit=1

Bearer是一个token_type($token_type)。 长字符串是访问令牌($access_token

如何将此转换为Guzzle请求?我已经将另一个curl POST请求转换为Guzzle,但这不是同一笔交易。

1 个答案:

答案 0 :(得分:0)

好吧,我从来没有在我的生活中使用过这个库,但在快速查看the documentation之后,它似乎应该有效:

$client = new GuzzleHttp\Client([
    'base_uri' => 'https://example.com/something?limit=1'
]);
$client->request('GET', '/get', [
    'headers' => [
        'Authorization' => 'Bearer 905290532905902390523905krai20',
    ]
]);