am building a php app and an sending the following request
$data= $mycon->get("/statuses/show/".$id);
the above request works fine for tweets which are upto 140 characters and return media objects
extended entities if it has any attached to it .
for more than 140 characters am doing the following request
$data= $mycon->get("/statuses/show/".$id."&include_my_retweet=true&tweet_mode=extended")
But the above call give me that page does not exists