如何将文本框添加到 Twitter api 脚本?

how can i add a textbox to twitter api script?

我有这个 twitter api 脚本,它可以从指定用户那里提取推文。

我想知道如何更改它,以便我可以使用文本框字段而不是固定的用户名。

这是代码

我可以 link 将 else {$user = "twitterusername";} 添加到带有提交按钮的文本框吗?

<?$url = "https://api.twitter.com/1.1/statuses/user_timeline.json";
$requestMethod = "GET";
if (isset($_GET['user']))  {$user = $_GET['user'];}  else {$user  = "twitterusername";}
if (isset($_GET['count'])) {$user = $_GET['count'];} else {$count = 20;}
$getfield = "?screen_name=$user&count=$count";
$twitter = new TwitterAPIExchange($settings);
$string = json_decode($twitter->setGetfield($getfield)
->buildOauth($url, $requestMethod)
->performRequest(),$assoc = TRUE);
if($string["errors"][0]["message"] != "") {echo "<h3>Sorry, there was a problem.</h3><p>Twitter returned the following error message:</p><p><em>".$string[errors][0]["message"]."</em></p>";exit();}
foreach($string as $items)
    {
        echo "Tweet: ". $items['text']."<br />";
        echo "retweets: ". $items['retweet_count']."<br />";
    }
?>

从这个片段的外观来看,它将使用 $_GET 传递的任何用户。因此,如果您想要一个带有文本输入的表单来选择一个新用户,您将需要在页面上放置一个,使用带有 method="get" 的表单提交它。

你这里有:

if (isset($_GET['user']))  {$user = $_GET['user'];}  else {$user  = "twitterusername";}

仅当您没有为 user.

传递 GET(又名查询字符串)值时,用户名才会固定

如果您使用 ?user=someOtherUsername 访问了该页面,它将为该用户拉回数据。

因此,要让表单从文本框中传递该值,您可以在同一个 PHP 文件中使用像这样简单的东西:

<form method="GET" action="">
    <input type="text" name="user" /><input type="submit" value="Submit" />
</form>

这与您的 count 值相同。您可以通过使用另一个名为 count.

的 GET 值来控制