PHP code example of vkoori / guzzle-wrapper

1. Go to this page and download the library: Download vkoori/guzzle-wrapper library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

vkoori / guzzle-wrapper example snippets


// Create a GuzzleClient instance
$client = new \Vkoori\GuzzleWrapper\GuzzleClient();

// Perform a POST request with extensive chaining
$response = $client
    ->setBaseUrl('https://api.example.com')               // Set the base URL
    ->endpoint('users')                                   // Set the endpoint (e.g., /users)
    ->headers([                                           // Set custom headers
        'X-Custom-Header' => 'CustomHeaderValue',
    ])
    ->accept('application/json')                          // Set the Accept header
    ->withToken('your-api-token-here')                    // Set Authorization header with Bearer token
    ->userAgent('MyCustomUserAgent/1.0')                  // Set a custom User-Agent header
    ->connectTimeout(2.0)                                 // Set connection timeout to 2 seconds
    ->timeout(5.0)                                        // Set overall request timeout to 5 seconds
    ->retry(3, 300000)                                    // Retry up to 3 times with increasing delay
    ->asJson()                                            // Use JSON format for the request body
    ->data([                                              // Add JSON data for the request body
        'name'     => 'John Doe',
        'email'    => '[email protected]',
        'password' => 'secretpassword',
    ])
    ->post();                                             // Send a POST request

// Response
echo (string) $response->getBody();