Fixed wrong endpoint in our php example

This commit is contained in:
Micke Prag 2012-02-02 15:58:55 +01:00
parent f15fd887e8
commit 7834d935e2

View file

@ -7,7 +7,7 @@ require_once 'HTTP/OAuth/Consumer.php';
define('PUBLIC_KEY', '');
define('PRIVATE_KEY', '');
define('URL', 'http://api.telldus.net');
define('URL', 'http://api.telldus.com'); //https should be used in production!
define('REQUEST_TOKEN', constant('URL').'/oauth/requestToken');
define('AUTHORIZE_TOKEN', constant('URL').'/oauth/authorize');
define('ACCESS_TOKEN', constant('URL').'/oauth/accessToken');