Skip to content

rizkikurni/Guzzle-php

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 

Repository files navigation

Guzzle-php

'Simple usage of Guzzle with GET method'

In the given statement, the request is made using the GET method. The Guzzle library simplifies the process of making HTTP requests in PHP. Guzzle provides an easy-to-use API for sending HTTP requests, handling responses, and working with request options.

To use Guzzle with the GET method, you need to follow these steps:

  1. Import the required classes from the GuzzleHttp library:
use GuzzleHttp\Client;
use GuzzleHttp\Exception\RequestException;
  1. Create a new instance of the Guzzle Client class:
$client = new Client();
  1. Send a GET request to the desired URL:
try {
    $response = $client->get('https://api.example.com/endpoint');
    $statusCode = $response->getStatusCode(); // Get the HTTP status code
    $content = $response->getBody()->getContents(); // Get the response body
    // Process the response data as needed
} catch (RequestException $e) {
    // Handle any request exceptions/errors
}

In the example above, we make a GET request to https://api.example.com/endpoint. The response is stored in the $response variable. You can access the status code using $response->getStatusCode() and the response body using $response->getBody()->getContents(). Remember to handle any request exceptions or errors using a try-catch block.

This is a basic implementation of Guzzle with the GET method. You can modify the code according to your specific requirements and integrate it into your application as needed.

About

Simple usage of Guzzle with GET method

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages