ienaga/simple-api-client

simple api library.

1.0.0 2017-08-22 06:16 UTC

This package is auto-updated.

Last update: 2024-04-11 12:49:41 UTC


README

simple api library.

UnitTest PHPMD Latest Stable Version Total Downloads Latest Unstable Version License

Composer

{
    "require": {
       "ienaga/simple-api-client": "*"
    }
}

Usage

GET (AWS ElasticSearch)

$client = new \SimpleApi\Client();
$json = $client
    ->setEndPoint("https://search-****.ap-northeast-1.es.amazonaws.com")
    ->setPath("/index_name/type_name/_search?q=user:kimchy")
    ->send();

POST (Google FireBase)

$client = new \SimpleApi\Client();
$json = $client
    ->addHeader("Authorization", "key=XXXXXXX")
    ->setEndPoint("https://fcm.googleapis.com/fcm/send")
    ->setMethod("POST")
    ->add("to", "INSTANCE_ID")
    ->add("priority", "high")
    ->add("content_available", true)
    ->add("notification", [
        "title" => "title", 
        "body"  => "body", 
        "badge" => 1
    ])
    ->send();

PUT (AWS ElasticSearch)

$client = new \SimpleApi\Client();
$json = $client
    ->setEndPoint("https://search-****.ap-northeast-1.es.amazonaws.com")
    ->setPath("/index_name/type_name")
    ->setMethod("PUT")
    ->add("status", 2)
    ->send();

DELETE (AWS ElasticSearch)

$client = new \SimpleApi\Client();
$json = $client
    ->setEndPoint("https://search-****.ap-northeast-1.es.amazonaws.com")
    ->setPath("/index_name")
    ->setMethod("DELETE")
    ->send();