I have the details for user XXXX1
$oauth_access_token = "XXXXX";
$oauth_access_token_secret = "XXXXX";
$consumer_key = "XXXXX";
$consumer_secret = "XXXXX";
I am getting the tweets of XXXXX1
by using curl with $url = "https://api.twitter.com/1.1/statuses/user_timeline.json";
, but I want to get the tweets of other users like XXXXX2,XXXXX3,....
which API I need to use, suggest me pls.