我编写了一个脚本,使用Net::OAuth对谷歌的Latitude OAuth API进行身份验证。它正确地进行身份验证(因为我可以成功地从API中获取数据)。但是,当我尝试add an historical entry时,我收到401 Unknown authorization header
响应。我正在使用以下代码:
my $location_data = $json->encode(\%data);
$request = Net::OAuth->request("protected resource")->new(
consumer_key => $c_key,
consumer_secret => $c_secret,
token => $token,
token_secret => $token_secret,
verifier => $verifier,
request_url => 'https://www.googleapis.com/latitude/v1/location',
request_method => 'POST',
signature_method => $s_method,
timestamp => time,
nonce => &nonce(),
extra_params => {
key => $s_key
}
);
$request->sign;
$ua->default_header("Authorization", $request->to_authorization_header);
$ua->default_header("Content-Type", "application/json");
my $res = $ua->post('https://www.googleapis.com/latitude/v1/location?key=' . $s_key,
Content => $location_data);
所有变量都在API的fetch部分中使用,所以我知道这些都没问题。我不确定我是否使用正确的网址发帖,我已经尝试了上面示例中的内容以及$request->to_url
。
任何建议都将不胜感激。
答案 0 :(得分:0)
经过Latitude API团队的一些来回,确定此错误来自Content-Type
实际上未设置为application/json
的事实。将上述代码更改为:
$ua->default_header("Authorization", $request->to_authorization_header);
my $res = $ua->post('https://www.googleapis.com/latitude/v1/location?key=' . $s_key,
'Content-Type' => 'application/json',
Content => $location_data);
一切都按预期工作。