Hello again . Here , I report that I solved my probrem . If you using tmhOAuth , try the following process .
Change
$twitter->request("POST",$twitter->url("oauth/request_token",""),array("oauth_callback" => url));
To
$twitter->request("POST",$twitter->url("oauth/request_token",""),array("oauth_callback" => url ,"Content-Length" => 0));
And then
Change
$twitter->request("POST",$twitter->url("oauth/access_token",""));
To
$twitter->request("POST",$twitter->url("oauth/access_token",""),array("Content-Length" => 0));
* $twitter = new tmhOAuth( array ("consumer_key" => consumer_key , "consumer_secret" => consumer_secret));
Thanks a ton , thank you David !