使用php DEFINE中的变量的Twitter API错误

时间:2009-06-02 12:08:43

标签: php twitter

我正在尝试将用户名和密码变量传递给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);

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

任何线索?

3 个答案:

答案 0 :(得分: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中字符串的更多信息:

答案 1 :(得分:1)

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

答案 2 :(得分:0)

你正在循环中使用define,这不会起作用,因为你只能定义一次e常量。