|
Hi,
I'm preparing to use all Twitter API calls through OAuth following Twitter's recent announcement about v1.1 of their API. But I realize that the following doesn't use authentication:
my $res = $nt->show_status({
id => $twit,
include_entities => 'true',
authenticate => 1
I've double checked it via $res = $nt->rate_limit_status({authenticate => 1}); and $res = $nt->rate_limit_status({authenticate => 0}); . Both work, and I can deduce that $nt->show_status has been using the non-authenticated route. Any reason why?
Thank you for you help!
Cheers,
Scotty |