0
我的代碼工作得很好。它有一種形式,用戶必須輸入一個關鍵字,併爲他們提供該關鍵字的Twitter搜索結果。 如何使用地理編碼在結果中添加用戶的IP地址或位置?在twitter搜索中使用地理編碼API
這是我的代碼:
<?php
include "twitteroauth.php";?>
<?php
$consumer = "...";
$consumersecret = "...";
$accesstoken = "...";
$accesstokensecret = "...";
$twitter = new TwitterOAuth($consumer, $consumersecret, $accesstoken, $accesstokensecret);
?>
<html>
<head>
<meta charset="UTF-8" />
<title>twitter search</title>
</head>
<body>
<form action="" method="post">
<label> Search: <input type="text" name ="keyword"/></label>
</form>
<?php
if (isset($_POST['keyword'])){
$tweets = $twitter->get('https://api.twitter.com/1.1/search/tweets.json?q='.$_POST['keyword'].'&result_type=recent&count=50');
foreach($tweets as $tweet){
foreach($tweet as $t){
echo '<p> <img src="'.$t->user->profile_image_url.'"/><p>Tweet: '.$t->text.'<br>';
}
}
}
?>
</body>
</html>