When I checking the twitter apps on my web page this morning. I was getting the error message. But everything was working good for months, but now suddenly stopped. I was getting this message.
Whoa there!
There is no request token for this page. That’s the special key we need from applications asking to use your Twitter account. Please go back to the site or application that sent you here and try again; it was probably just a mistake.
I have no clue and started googling nothing found! Then I checked the @twittersecurity one of latest tweet that’s clears the point. Twitter disabled SSLv3 protocol support on oct 5. So our old codes where stop working. here is the tweet.
We have disabled SSLv3 protocol support in response to the vulnerability published today. You may need to update your browser to use Twitter
— Twitter Security (@twittersecurity) October 15, 2014
How to fix?
I am using twitter oauth php library to connect with twitter. That library using the php curl. there we need to find the below line and comment it. Now everything should work to you.
curl_setopt($ch, CURLOPT_SSLVERSION,3);
Happy coding… !