jleagle / btn-api-client
A helper class to access data from the BTN API
Installs: 18
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 0
Forks: 1
Open Issues: 0
pkg:composer/jleagle/btn-api-client
Requires
- php: >=5.4
- fguillot/json-rpc: ~1.0
This package is auto-updated.
Last update: 2025-09-09 15:00:29 UTC
README
A helper class to access data from the BTN API (http://btnapps.net/)
Usage
Instantiate Btn() with your API key:
$btn = new \Jleagle\Btn\Btn($apiKey);
Get blog posts:
try { print_r($btn->getBlog()); } catch(Exception $e) { echo $e->getMessage(); }