0

我正在开发一个 Twitter 应用程序。我的密钥存储在用户的数据库中,因此它会向每个用户发送他们的密钥。基本上,用户 1 的密钥是 X,用户 2 的密钥是 Y,(例如,不适合我),您需要他们的密钥来发送推文。

所以我试图将数据库中所有用户的键用作数组。但它显示为这个 Xy,它们被组合在一起,它认为这是一个完整的关键。

我怎样才能让 PHP 知道这是两个不同的键?

require('config.php');
$query = "SELECT * FROM users";
$result = mysql_query($query) or die(mysql_error());
while($row = mysql_fetch_array($result)){
$oauthtoken2 = $row['oauth_token'];
$oauthsecret2 = $row['oauth_token_secret'];
$oAuthToken = $oauthtoken2;
$oAuthSecret = $oauthsecret2;
echo "$oAuthToken";
require_once('twitteroauth.php');
$tweet = new TwitterOAuth($consumerKey, $consumerSecret, $oAuthToken, $oAuthSecret);
}
4

2 回答 2

0

它似乎是连接的,因为 echo 不包含空格,请尝试

echo "$oAuthToken\n";
于 2012-10-09T02:25:33.860 回答
0

尝试:

<?php
require('config.php');
require_once('twitteroauth.php');

$query = "SELECT * FROM users";
$result = mysql_query($query) or die(mysql_error());

while($row = mysql_fetch_array($result)){
    $oauthtoken2 = $row['oauth_token'];
    $oauthsecret2 = $row['oauth_token_secret'];
    $oAuthToken = $oauthtoken2;
    $oAuthSecret = $oauthsecret2;
    //echo "$oAuthToken";
    $tweet = new TwitterOAuth($consumerKey, $consumerSecret, $oAuthToken, $oAuthSecret);

    // do what ever you need to do here with the $tweet object.

    //unset($tweet); - unset it here, then loop to the next token / secret pair
}
?>
于 2012-10-09T02:26:12.417 回答