我开发了一个使用 Tumblr API 的 PHP 脚本。当我发布“文本”时,一切正常,但在“引用”帖子上,我收到“错误请求”错误。我使用Composer从https://github.com/tumblr/tumblr.php获取“tumblr/tumblr”存储库。
这是我的 PHP 脚本:
<?php
require 'vendor/autoload.php';
$consumer_key = 'KEY';
$consumer_secret = 'SECRET';
$token = 'TOKEN';
$token_secret = 'SECRET';
$blog = 'BLOG';
$client = new Tumblr\API\Client($consumer_key, $consumer_secret, $token, $token_secret);
#$options = array('type' => 'text', 'title' => 'Title', 'body' => 'Body', 'tags' => 'Test');
$options = array('type' => 'quote', 'text' => 'Text', 'source' => 'Source', 'tags' => 'Test');
try{
$res = $client->createPost($blog, $options);
}
catch(Exception $e){
print "ERROR: ".$e->getMessage()."\n";
exit(1);
}
我怎样才能解决这个问题?