We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 60dc044 commit 0a6cda0Copy full SHA for 0a6cda0
inc/class.twitterapi.php
@@ -13,7 +13,7 @@ class TwitterApi {
13
public $dbMap = array(
14
"id_str" => "tweetid",
15
"created_at" => "time",
16
- "text" => "text",
+ "full_text" => "text",
17
"source" => "source",
18
"coordinates" => "coordinates",
19
"geo" => "geo",
maintenance/loadtweets.php
@@ -114,7 +114,8 @@ function importTweets($p){
114
$userparam => $uservalue,
115
'include_rts' => true,
116
'include_entities' => true,
117
- 'count' => $maxCount
+ 'count' => $maxCount,
118
+ 'tweet_mode' => 'extended'
119
);
120
121
if($sinceID){
0 commit comments