semifor / Net-Twitter

A Perl interface to the Twitter APIs
83 stars 37 forks source link

api.twitter.com now restricted to SSL/TLS traffic #37

Closed keithbro closed 10 years ago

keithbro commented 10 years ago

https://dev.twitter.com/discussions/24239

Since api.twitter.com is now restricted to SSL/TLS traffic, this should be reflected in Net::Twitter.

i.e.

Net::Twiter->new;

should be the same as

Net::Twitter->new( ssl => 1 );

Otherwise the reponse will be 403 forbidden.

borgified commented 10 years ago

yea this became effective as of today (1/14/2014) i added ssl => 1 to my script and it fixed the 403. (1 should be default value, not 0 anymore)

semifor commented 10 years ago

I just released 4.01001 which warns if no ssl option is specified. For backwards compatibility, it defaults to SSL disabled. A future release will make the default SSL enabled. See 017f9e4 for details.