I am new in twitter Api ... but i read some in the documentations.
Now in my twitter account i have followers and they tweets displayed in my home page.
I want using PHP get all tweets that displayed in my home page ... all what i can do so far to get my tweets only.
$url = "https://api.twitter.com/1.1/statuses/user_timeline.json";
// Make Requests
$header = array(buildAuthorizationHeader($oauth), 'Expect:');
$options = array( CURLOPT_HTTPHEADER => $header,
CURLOPT_HEADER => false,
CURLOPT_URL => $url ,
CURLOPT_RETURNTRANSFER => true,
CURLOPT_SSL_VERIFYPEER => false);
$feed = curl_init();
curl_setopt_array($feed, $options);
$json = curl_exec($feed);
curl_close($feed);
$twitter_data = json_decode($json);
thanks,