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,13 @@
<?php
require_once 'common.php';
$consumer = new HTTP_OAuth_Consumer(constant('PUBLIC_KEY'), constant('PRIVATE_KEY'));
$consumer->getRequestToken(constant('REQUEST_TOKEN'), constant('BASE_URL').'/getAccessToken.php');
$_SESSION['token'] = $consumer->getToken();
$_SESSION['tokenSecret'] = $consumer->getTokenSecret();
$url = $consumer->getAuthorizeUrl(constant('AUTHORIZE_TOKEN'));
header('Location:'.$url);