Skip to content

Instantly share code, notes, and snippets.

@NetworksAreMadeOfString
Created January 6, 2013 21:15
Show Gist options
  • Save NetworksAreMadeOfString/4470288 to your computer and use it in GitHub Desktop.
Save NetworksAreMadeOfString/4470288 to your computer and use it in GitHub Desktop.
<?php
require_once 'common.php';
$DEVICEID = $_GET['deviceid'];
$consumer = new HTTP_OAuth_Consumer(constant('PUBLIC_KEY'), constant('PRIVATE_KEY'), 'XXXXXXXXXXXXXXX', 'XXXXXXXXXXXXXXX');
$params = array(
'supportedMethods' => constant('TELLSTICK_TURNON') | constant('TELLSTICK_TURNOFF'),
'id' => $DEVICEID,
'response' => 'json'
);
$response = $consumer->sendRequest(constant('REQUEST_URI').'/device/turnOn', $params, 'GET');
echo $response->getBody();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment