0

我正在尝试将用户名和密码变量传递给 twitter 凭据,但它不断返回我未通过身份验证。但是,当我使用实际的用户名和密码而不是变量时,它成功授权。

$username = $_POST["username"];
$password = $_POST["password"];

$url = "http://search.twitter.com/search.atom?q=golf&show_user=true&rpp=100";
$search = file_get_contents($url);

$regex_name = '/\<name\>(.+?) \(/';
preg_match_all($regex_name,$search,$user);
for($i=0;$user[1][$i];$i++)
{
$follow = $user[1][$i];
    define('TWITTER_CREDENTIALS', '$username:$password');
    $url = "http://twitter.com/friendships/create/".$follow.".xml";
    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL,$url);
    curl_setopt($ch, CURLOPT_POST, 1);
    curl_setopt($ch, CURLOPT_USERPWD, TWITTER_CREDENTIALS);
    $result= curl_exec ($ch);
    curl_close ($ch);

我认为它与用户名和密码之间的冒号有关,或者可能试图在定义函数中使用变量。

有什么线索吗?

4

3 回答 3

6
$username = $_POST["username"];
$password = $_POST["password"];
// INCORRECT. Will literary assign TWITTER_CREDENTIALS as $username:$password
// define('TWITTER_CREDENTIALS', '$username:$password');

// CORRECT, will parse the variables and assign the result to TWITTER_CREDENTIALS
define('TWITTER_CREDENTIALS', "$username:$password");

记住带双引号 (") 的字符串会解析字符串中的变量,而带单引号 (') 的字符串则不会。

阅读有关 PHP 中字符串的更多信息:

于 2009-06-02T12:17:15.090 回答
1

它与使用单引号而不是双引号有关。

于 2009-06-02T12:13:44.193 回答
0

你在一个循环中使用define,那是行不通的,因为你只能定义e常量一次。

于 2009-06-02T13:09:36.217 回答