PHP code example of berkas1 / thingspeak_php
1. Go to this page and download the library: Download berkas1/thingspeak_php library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
berkas1 / thingspeak_php example snippets
$ts = new \berkas1\thingspeak_php\Api(channel_id, channel_api_key);
// you can set y in $params)
$ts->createChannel($params)->getResponse();
// update a channel
$ts->updateChannel($params)->getResponse();
// get a feed
$ts->getFeed($params)->getResponse();
// get a field feed
$ts->getFieldFeed($fieldId, $params)->getResponse();
// list public channels
$ts->listPublicChannels($params)->getResponse();
// get channel status
$ts->getStatus()->getResponse();
composer