Как реализовать твиттер-приложение для твита через abraham / twitteroauth

Я очень новичок в программировании oAuth, PHP и Twitter. Я пытаюсь разработать приложение для Twitter с библиотекой Abraham Twitteroauth. Я скачал исходный код с https://github.com/abraham/twitteroauth и я поместил это в моем WAMP’е.
Мой config.php

<?php

/**
* @file
* A single location to store configuration.
*/

define('CONSUMER_KEY', 'nVD<hidden>');
define('CONSUMER_SECRET', 'DKTAW17fwK<hidden>');
define('OAUTH_CALLBACK', 'http://127.0.0.1/twitteroauth-master/twitteroauth-master/sdf.php');
?>

Я почти уверен в ключе и секрете Consumer, когда получаю страницу входа. Sdf.php — это файл, в котором я делал твиты

    <?php
/**
* @file
*
*/

/* Load required lib files. */
session_start();
require_once('twitteroauth/twitteroauth.php');
require_once('config.php');

/* If access tokens are not available redirect to connect page. */
if (empty($_SESSION['access_token']) || empty($_SESSION['access_token']['oauth_token']) || empty($_SESSION['access_token']['oauth_token_secret'])) {
header('Location: ./clearsessions.php');
}
/* Get user access tokens out of the session. */
$access_token = $_SESSION['access_token'];

/* Create a TwitterOauth object with consumer/user tokens. */
$connection = new TwitterOAuth(CONSUMER_KEY, CONSUMER_SECRET, $access_token['oauth_token'], $access_token['oauth_token_secret']);

/* If method is set change API call made. Test is called by default. */
$content = $connection->get('account/rate_limit_status');
echo "Current API hits remaining: {$content->remaining_hits}.";

/* Get logged in user to help with tests. */
$user = $connection->get('account/verify_credentials');

$active = FALSE;
if (empty($active) || empty($_GET['confirmed']) || $_GET['confirmed'] !== 'TRUE') {
echo '<h1>Warning! This page will make many requests to Twitter.</h1>';
echo '<h3>Performing these test might max out your rate limit.</h3>';
echo '<h3>Statuses/DMs will be created and deleted. Accounts will be un/followed.</h3>';
echo '<h3>Profile information/design will be changed.</h3>';
echo '<h2>USE A DEV ACCOUNT!</h2>';
echo '<h4>Before use you must set $active = TRUE in test.php</h4>';
echo '<a href="./test.php?confirmed=TRUE">Continue</a> or <a href="./index.php">go back</a>.';
exit;
}

function twitteroauth_row($method, $response, $http_code, $parameters = '') {
echo '<tr>';
echo "<td><b>{$method}</b></td>";
switch ($http_code) {
case '200':
case '304':
$color = 'green';
break;
case '400':
case '401':
case '403':
case '404':
case '406':
$color = 'red';
break;
case '500':
case '502':
case '503':
$color = 'orange';
break;
default:
$color = 'grey';
}
echo "<td style='background: {$color};'>{$http_code}</td>";
if (!is_string($response)) {
$response = print_r($response, TRUE);
}
if (!is_string($parameters)) {
$parameters = print_r($parameters, TRUE);
}
echo '<td>', strlen($response), '</td>';
echo '<td>', $parameters, '</td>';
echo '</tr><tr>';
echo '<td colspan="4">', substr($response, 0, 400), '...</td>';
echo '</tr>';

}

function twitteroauth_header($header) {
echo '<tr><th colspan="4" style="background: grey;">', $header, '</th></tr>';
}

date_default_timezone_set('GMT');
$parameters = array('status' => date(DATE_RFC822));
$status = $connection->post('statuses/update', $parameters);
twitteroauth_row('statuses/update', $status, $connection->http_code, $parameters);

?>

Я скопировал и вставил эту строку из test.php.
Проблема у меня заключается в том, что когда я захожу на домашнюю страницу, регистрируюсь, он снова перенаправляет меня на connect.php. И кажется, что это не сохранение каких-либо сессий. Пожалуйста, помогите мне преодолеть это.

0

Решение

Задача ещё не решена.

Другие решения

Других решений пока нет …

По вопросам рекламы [email protected]