23 lines
807 B
PHP
23 lines
807 B
PHP
<?php
|
|
include_once("./_common.php");
|
|
|
|
/**
|
|
* @file
|
|
* Check if consumer token is set and if so send user to get a request token.
|
|
*/
|
|
|
|
/**
|
|
* Exit with an error message if the CONSUMER_KEY or CONSUMER_SECRET is not defined.
|
|
*/
|
|
require_once(G5_SNS_PATH.'/twitter/twitterconfig.php');
|
|
if (CONSUMER_KEY === '' || CONSUMER_SECRET === '' || CONSUMER_KEY === 'CONSUMER_KEY_HERE' || CONSUMER_SECRET === 'CONSUMER_SECRET_HERE') {
|
|
echo 'You need a consumer key and secret to test the sample code. Get one from <a href="https://dev.twitter.com/apps">dev.twitter.com/apps</a>';
|
|
exit;
|
|
}
|
|
|
|
/* Build an image link to start the redirect process. */
|
|
$content = '<a href="./redirect.php"><img src="./images/lighter.png" alt="Sign in with Twitter"/></a>';
|
|
|
|
/* Include HTML to display on the page. */
|
|
include('html.inc');
|