Add Telldus Live! authentication example

This commit is contained in:
Micke Prag 2012-01-09 12:37:41 +01:00
parent f58793ca59
commit 6fa59e9ca9
4 changed files with 100 additions and 0 deletions

View file

@ -0,0 +1,21 @@
<?php
require_once 'common.php';
$consumer = new HTTP_OAuth_Consumer(constant('PUBLIC_KEY'), constant('PRIVATE_KEY'), $_SESSION['token'], $_SESSION['tokenSecret']);
try {
$consumer->getAccessToken(constant('ACCESS_TOKEN'));
$_SESSION['accessToken'] = $consumer->getToken();
$_SESSION['accessTokenSecret'] = $consumer->getTokenSecret();
header('Location:index.php');
} catch (Exception $e) {
?>
<p>Authorization failed!</p>
<p><a href="index.php">Go back</a></p>
<?php
}