>> user& developer experiences without sacrificing user, developer,& Twitter
>> - You will have unusual results otherwise& eventually your calls will
>> fail
>> * Use search.twitter.com for all Search API operations
>> * Use api.twitter.com/oauth/* for all OAuth token negotiation operations
>>
>> *NOW LAUGH& RELAX.*
>
--
This message contains confidential information and is intended only for the individual named. If you are not the named addressee you should not disseminate, distribute or copy this e-mail. Please notify the sender immediately by e-mail if you have received this e-mail by mistake and delete this e-mail from your system. E-mail transmission cannot be guaranteed to be secure or error-free as information could be intercepted, corrupted, lost, destroyed, arrive late or incomplete, or contain viruses. The sender therefore does not accept liability for any errors or omissions in the contents of this message, which arise as a result of e-mail transmission.
> There was plenty of notification on when Basic Auth was going to be
> discontinued.
Dustin, I can't comment on what notification you received, and am glad you
received it.
I can only comment on the notification that *I* received: this was, on
9/2/10, addressed to the email addys associated with all 11 twitter
accounts, the message that 3 days earlier basic auth had been expired.
While I may be a perl hobbyist, in my professional life I do know how to
identify, open and read an email.
--
For perl devs, the move to OAuth is really quite easy, especially for
automated scripts.
Register an application at http://dev.twitter.com. Grab the consumer
key and secret, and the access token and secret.
use Net::Twitter;
my $nt = Net::Twitter->new(
traits => [qw/OAuth API::REST/],
consumer_key => $YOUR_CONSUMER_KEY,
consumer_secret => $YOUR_CONSUMER_SECRET,
access_token => $YOUR_ACCESS_TOKEN,
access_token_secret => $YOUR_ACCESS_SECRET,
);
$nt->update("Bob's your uncle!");
Need help? Just drop by #net-twitter at irc.perl.org.
-Marc
Tom