_tweet_id is wrong
-
You should not do this to import Tweet IDs :
$tweet_id = abs((int)$tweet->id);
It fails to import very long tweet ids
just do this :
$tweet_id = $tweet->id_str;
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘_tweet_id is wrong’ is closed to new replies.