4

每次我向我的网站添加新内容时,我都会尝试设置一个自动 tumblr 帖子。我正在使用以下代码:

$conskey = "APIKEY";
$conssec = "APISECRET";

$tumblr_blog = "blogname.tumblr.com";
$to_be_posted = "This is the text to be posted";

$oauth = new OAuth($conskey,$conssec);
$oauth->fetch("http://api.tumblr.com/v2/blog/".$tumblr_blog."/post", array('type'=>'text', 'body'=>$to_be_posted), OAUTH_HTTP_METHOD_POST);

$result = json_decode($oauth->getLastResponse());

if($result->meta->status == 200){
    echo 'Success!';
}

据我所知,这一切都格式正确。然而,这是我第一次尝试使用 Oauth 连接到 JSON API,所以我对自己正在做的事情并不完全有信心。

这是我收到的确切错误:

Fatal error: Uncaught exception 'OAuthException' with message 'Invalid auth/bad request (got a 401, expected HTTP/1.1 20X or a redirect)' in /home/public_html/edge/tumblr.php:35 Stack trace: #0 /home/public_html/edge/tumblr.php(35): OAuth->fetch('http://api.tumb...', Array, 'POST') #1 /home/public_html/edge/index.php(95): include('/home/...') #2 {main} thrown in /home/public_html/edge/tumblr.php on line 35

第 35 行是以 $oauth->fetch 开头的行。

谢谢你的帮助 :-)

编辑我已经通过用这个页面 上的示例替换我以前的代码解决了这个问题

4

0 回答 0