我一直在使用perl搞乱tumblr API,并且已经使用了几个函数。
但是,我无法通过perl上传本地图像文件。
以下是适用于网址的代码
use LWP::Authen::OAuth;
use JSON;
use Data::Dumper;
use strict;
my $ua = LWP::Authen::OAuth->new(
oauth_consumer_key => 'xxx',
oauth_consumer_secret => 'xxx',
oauth_token => 'xxx',
oauth_token_secret => 'xxx',
);
my $response;
$response = $ua->post( 'http://api.tumblr.com/v2/blog/mytumblr.tumblr.com/post', [
type => 'photo',
url => 'http://www.example.com/mypic.jpg' ,
caption => 'Test image 1',
]);
if ($response->is_success) {
print "it worked";
}
else {
print "it did not work \n \n \n \n";
print $response->as_string;
}
然而,当我在帖子参数中替换“url”代表“数据”时(按照他们的API描述中的指示 - http://www.tumblr.com/docs/en/api/v2#posting),我不断收到来自tumblr的错误响应。我已经尝试了几种输入“数据”参数的方法 - 作为文件的路径,作为二进制表示,作为URL编码的二进制表示,作为url编码的base64二进制表示,将这些值中的一个作为唯一元素卡住在一个数组中 - 我已经尝试了所有,并且每一个我从tumblr收到一条错误消息。
那么,有人可以告诉我如何将本地图像文件上传到tumblr吗?
答案 0 :(得分:0)
我对tumblr API并不完全熟悉,但是谷歌快速搜索了这个例子:https://gist.github.com/derekg/1198576
我会尝试
$response = $ua->post( 'http://api.tumblr.com/v2/blog/mytumblr.tumblr.com/post', [
type => 'photo',
'data[0]' => $file_contents , ## LWP::Useragent should automatically urlencode this
caption => 'Test image 1',
]);
根据这个答案https://stackoverflow.com/a/177866/810448,“data []”也可能在这种情况下起作用。
如果LWP :: Useragent尚未执行此操作,我还会考虑在请求标头中添加'Content-type:application / x-www-form-urlencoded'。