0

Twitter の user_id、screen_name、oauth_token、および oauth_token_secret (ログイン ユーザーから) を、セットアップした mysql データベースに保存できないようです。

私は Abraham Williams Oauth ライブラリを使用しています。

そのコードは正常に動作し、ユーザーがログインするときに print_r 要求を使用して access_token を構成するコンポーネントを確認できますが、トークンはデータベース 'tokens' のテーブル 'users' に保存されませんか?

SOに関するほぼすべての質問/回答を読み、すべてのコードをテストしましたが、これらのトークンに対して単純なINSERTを機能させることができないようです? また、いくつかのテスト コンポーネントを config_db ファイルに (INSERT として) ハードコーディングしたところ、正常に読み込まれました。

コールバック コード:

<?php

require_once("/path/config_db.php");

session_start();
// Include class & create
require_once('/path/config.php');
require_once('/path/twitteroauth/twitteroauth.php');
// User has selected to DENY access
if(!empty($_GET["denied"])) {
  // could re-direct or display cancelled view/template
  // we're just echoing out a message
  echo "No deal! <a href='index.php'>Try again?</a>";
  die();
}

/* If the oauth_token is old redirect to the connect page. */
if (isset($_REQUEST['oauth_token']) && $_SESSION['oauth_token'] !== $_REQUEST['oauth_token']) {
  $_SESSION['oauth_status'] = 'oldtoken';
  header('Location: ./clearsessions.php');
}

/* Create TwitteroAuth object with app key/secret and token key/secret from default phase */
$connection = new TwitterOAuth(CONSUMER_KEY, CONSUMER_SECRET, $_SESSION['oauth_token'], $_SESSION['oauth_token_secret']);

/* Request access tokens from twitter */
$access_token = $connection->getAccessToken($_REQUEST['oauth_verifier']);

//echo "RECEIVED TOKENS<br>";
// Check we have valid response
if(is_numeric($access_token["user_id"]))  {
// Save the access tokens to a DB (we're using a session)
/* Save the access tokens. Normally these would be saved in a database for future use. */
$_SESSION['access_token'] = $access_token;

//GET CREDENTIALS VIA API
$credentials = $connection->get('account/verify_credentials');

//insert tokens into db
print_r($_SESSION["access_token"]);
$sql="INSERT INTO users (`user_id` ,`screen_name` ,`oauth_token` ,`oauth_token_secret`) 
VALUES ('".$_SESSION["access_token"]["user_id"]."', 
'".$_SESSION["access_token"]["screen_name"]."', 
'".$_SESSION["access_token"]["oauth_token"]."', 
'".$_SESSION["access_token"]["oauth_token_secret"]."'";

if (!mysqli_query($con,$sql))
  {
  die('Error: ' . mysqli_error($con));
  }
echo "1 record added";

}
//echo $query;
//echo mysql_error();
print_r($_SESSION["access_token"]);
$message = array('status' => 'Test OAuth update. #testoauth');
$test = $connection->post('statuses/update', array('status' => 'Just a test '));

/* Remove no longer needed request tokens */
unset($_SESSION['oauth_token']);
unset($_SESSION['oauth_token_secret']);

/* If HTTP response is 200 continue otherwise send to connect page to retry */
if (200 == $connection->http_code) {
  /* The user has been verified and the access tokens can be saved for future use */
  $_SESSION['status'] = 'verified';
  header('Location: ./callback.php');
} else {
  /* Save HTTP status for error dialog on connnect page.*/
  header('Location: ./clearsessions.php');
}

?>

<? print_r($access_token); ?>

接続(config_dbファイル)は次のとおりです

<?php

$con=mysqli_connect("server","username","password","tokens");
// Check connection
if (mysqli_connect_errno())
  {
  echo "Failed to connect to MySQL: " . mysqli_connect_error();
  }

mysqli_close($con);

?>

テーブル「ユーザー」は次のとおりです。

$sql = "CREATE TABLE users 
(
user_id INT(11),
screen_name varchar(50),
oauth_token varchar(90),
oauth_token_secret varchar(90),
)";
4

1 に答える 1

0

SQL クエリに構文エラーがあります。閉じ括弧を忘れています。

'".$_SESSION["access_token"]["oauth_token_secret"]."'";  change this 
'".$_SESSION["access_token"]["oauth_token_secret"]."')";
于 2013-11-16T22:06:36.557 に答える