ocolin / tarana-wireless
Basic REST client for Tarana Wireless API
Installs: 19
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/ocolin/tarana-wireless
Requires
- guzzlehttp/guzzle: ^7.10
- ocolin/easyenv: ^2.8
Requires (Dev)
- phpstan/phpstan: ^2.1
- phpunit/phpunit: ^12.3
README
Description
API client for Tarana Wireless services
Usage
Environment variables
You can specify parameters in the constructor, but if any are left out, these environment variables will be used instead.
TARANA_WIRELESS_API_TOKEN - Authentication token for API
TARANA_WIRELESS_HOST - URL of server API
Instantiate
Create an instance of the Tarana object.
$tarana = new Ocolin\TaranaWireless\Client();
Parameters
$url: Name of the Tarana host server. If null, will use .env field.
$api_key: Authentication token for server. If null, will use .env field.
$timeout: HTTP timeout. Defaults to 20 seconds.
$verify: Verify SSL credentials. Defaults to off.
Making a call
$output = $tarana->call( path: '/v0/find/bns/issues', method: 'POST', query: [ 'response_format' => 'json' ] );
Parameters
$path: REQUIRED - End point API path, including named parameters names which will be replaced by variables. Copy/paste from the API docs.
$query: Array of parameters name/values to use for URI path or query URI.
$method: HTTP method. Defaults to GET.
$body: Object or array for POST/PUT/PATCH HTTP request bodies.