0

我正在尝试从https://launchpad.net请求一个令牌,根据文档,它只需要一个到 /+request-token 的 POST,其中包含 oauth_consumer_key、oauth_signature 和 oauth_signature_method 的表单编码值。通过 curl 提供这些项目按预期工作:

curl --data "oauth_consumer_key=test-app&oauth_signature=%26&oauth_signature_method=PLAINTEXT" https://launchpad.net/+request-token

但是,当我尝试通过我的 perl 脚本执行此操作时,它给了我一个 401 未经授权的错误。

#!/usr/bin/env perl

use strict;
use YAML qw(DumpFile);
use Log::Log4perl qw(:easy);
use LWP::UserAgent;
use Net::OAuth;
$Net::OAuth::PROTOCOL_VERSION = Net::OAuth::PROTOCOL_VERSION_1_0A;
use HTTP::Request::Common;
use Data::Dumper;
use Browser::Open qw(open_browser);

my $ua = LWP::UserAgent->new;

my ($home)           = glob '~';
my $cfg              = "$home/.lp-auth.yml";
my $access_token_url = q[https://launchpad.net/+access-token];
my $authorize_path   = q[https://launchpad.net/+authorize-token];

sub consumer_key { 'lp-ua-browser' }
sub request_url {"https://launchpad.net/+request-token"}

my $request = Net::OAuth->request('consumer')->new(
    consumer_key     => consumer_key(),
    consumer_secret  => '',
    request_url      => request_url(),
    request_method   => 'POST',
    signature_method => 'PLAINTEXT',
    timestamp        => time,
    nonce            => nonce(),
);

$request->sign;
print $request->to_url;

my $res = $ua->request(POST $request->to_url, Content $request->to_post_body);
my $token;
my $token_secret;
print Dumper($res);
if ($res->is_success) {
    my $response =
      Net::OAuth->response('request token')->from_post_body($res->content);
    $token        = $response->token;
    $token_secret = $response->token_secret;
    print "request token ",       $token,        "\n";
    print "request token secret", $token_secret, "\n";
    open_browser($authorize_path . "?oauth_token=" . $token);
}
else {
    die "something broke ($!)";
}

我尝试了使用$request->sign和不使用它,因为我认为在请求令牌阶段不需要这样做。无论如何,对此的任何帮助将不胜感激。

更新,切换到 LWP::UserAgent 并且必须同时传递 POST 和 Content :

my $res = $ua->request(POST $request->to_url, Content $request->to_post_body);

谢谢

4

1 回答 1

0

抱歉,我无法通过我的平板电脑进行验证,但您应该使用最新的 Perl 安装和使用

use LWP::Protocol::https;

http://blogs.perl.org/users/brian_d_foy/2011/07/now-you-need-lwpprotocolhttps.html

于 2013-02-27T23:18:28.683 回答