📌  相关文章
📜  php guzzle 客户端 x-www-form-urlencoded - PHP 代码示例

📅  最后修改于: 2022-03-11 14:53:36.430000             🧑  作者: Mango

代码示例1
$res = $client->post('http://example.co.uk/auth/token', [
    'form_params' => [
        'client_id' => 'SOMEID',
        'client_secret' => '9999jjjj67Y0LBLq8CbftgfdreehYEI=',
        'grant_type' => 'client_credentials'
    ]
]);