我尝试使用 Tumblr API v2 与POST方法共享链接。
request({
'method': 'POST',
'url': `https://api.tumblr.com/v2/blog/${credentials.blogName}/posts/link?api_key=${credentials.accessToken}`,
'headers': {
'Cache-Control': 'no-cache',
'Content-Type': 'application/x-www-form-urlencoded',
'Accept': 'application/json'
},
'form': {
'title': 'Lorem ipsum dolor sit amet',
'url': 'https://www.example.com/',
'description': 'Lorem ipsum dolor sit amet'
}
}, (error, response, body) => {
if (!error) {
resolve(body)
} else {
reject(error)
}
})
{"元" {"状态":401," MSG":"未授权"}"响应&# 34;:[],"错误":[{"标题":"未授权""代码":0,"细节":"东西 flubbed。再试一次。"}]}