Answers for "php guzzle client x-www-form-urlencoded"

PHP
0

php guzzle client x-www-form-urlencoded

$res = $client->post('http://example.co.uk/auth/token', [
    'form_params' => [
        'client_id' => 'SOMEID',
        'client_secret' => '9999jjjj67Y0LBLq8CbftgfdreehYEI=',
        'grant_type' => 'client_credentials'
    ]
]);
Posted by: Guest on August-05-2021

Code answers related to "php guzzle client x-www-form-urlencoded"

Browse Popular Code Answers by Language