my $response = $mech->get('http://API.stackexchange.com/1.1/questions?fromdate=' . $lasthour)my $q = from_Json($response->content())
我过去曾使用Mechanize登录网站,但Oauth的内容令人困惑,documentation is provided for using the API表明它适用于Web应用程序(需要使用StackExchange注册?).
特别是,我对notifications method感兴趣,但我希望正确的代码允许访问任何auth-required方法.
解决方法 你看过 Net::StackExchange2吗?#for methods that require auth.my $se = Net::StackExchange2->new( { site=>"stackoverflow",access_token => '<THE ACCESS TOKEN>',key => '<YOUR APP KEY>' });
它使用LWP :: UserAgent.即使您不想直接使用Net :: StackExchange2模块,您也很有可能找到一些好借用的示例代码.
总结以上是内存溢出为你收集整理的如何从perl脚本访问StackExchange API身份验证方法?全部内容,希望文章能够帮你解决如何从perl脚本访问StackExchange API身份验证方法?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)