使用php将数据从Twitter API插入MySQL数据库

时间:2015-07-02 03:53:05

标签: php mysql json

PHP编码的新手 - 我已经建立了一个基于服务器的MySQL数据库来插入twitter api数据。

我可以检索twitter api数据并在网络上对其进行分析(http://www.pdanalytics.ca/StephenHarperTweets.php)。使用PHP,如何将其插入我的数据库。

我已经使用谷歌搜索,并根据一般教程进行了尝试,但仍然觉得我相信应该是一项相当直接的任务。

感谢。

这是我的代码:

<?php

require_once('TwitterAPIExchange.php');

/** Set access tokens here - see: https://dev.twitter.com/apps/ **/
$settings = array(
'oauth_access_token' => "xxxxxxxxxxxxxxx",
'oauth_access_token_secret' => "xxxxxxxxxxxxxxx",
'consumer_key' => "xxxxxxxxxxxxx",
'consumer_secret' => "xxxxxxxxxxxxxxxxxxx"
);
$url = "https://api.twitter.com/1.1/statuses/user_timeline.json";

$requestMethod = "GET";

$getfield = '?screen_name=pmharper&count=20';
$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 "Tweeted by: ". $items['user']['name']."<br />";       
    echo "Screen name: ". $items['user']['screen_name']."<br />";
    echo "Tweet: ". $items['text']."<br />";                
    echo "Time and Date of Tweet: ".$items['created_at']."<br />";
    echo "Tweet ID: ".$items['id_str']."<br />";
    echo "Followers: ". $items['user']['followers_count']."<br /><hr />";
}
?>

1 个答案:

答案 0 :(得分:1)

这是最终密码!

我使用MySQLi为插入查询准备了Statement。我希望你已经创建了用于插入推文的数据库和表格。您需要更改以下几行代码并开始使用它。

030