bokbasen / php-sdk-periscopedata
PHP Client for working with periscopedata
Installs: 4 211
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 3
Forks: 0
Open Issues: 0
Requires (Dev)
- phpunit/phpunit: ^6
This package is not auto-updated.
Last update: 2025-04-05 03:57:47 UTC
README
PHP client for working with periscopedata API.
Simple client to work with periscopedata.com embed API. See https://doc.periscopedata.com/docv2/embed-api for details.
Code example showing same example as link above implemented in this client
<?php use Bokbasen\PeriscopeData\EmbedUrl; $data = [ 'dashboard' => 7863, 'embed' => 'v2', 'filters' => [ [ 'name' => 'Filter1', 'value' => 'value1' ], [ 'name' => 'Filter2', 'value' => '1234' ] ] ]; $client = new EmbedUrl('e179017a-62b0-4996-8a38-e91aa9f1', $data); $url = $client->getLink(); ?>