是否可以使用 Tumplr API POST 到非默认用户博客?

发布于 2024-11-03 16:16:19 字数 246 浏览 5 评论 0原文

我在这里查看了 API http://www.tumblr.com/docs/en/api# api_write

我没有看到任何方法可以发布到非默认博客? 我的意思是,如果用户在 Tumblr 上拥有多个博客,是否可以使用 write api 选择向哪个博客发送帖子? 我正在使用基于 OAuth 的 API 调用。

I reviewed the API here http://www.tumblr.com/docs/en/api#api_write

I did not see any way to post to non-default blog?
I mean, if a user has more than one blog on Tumblr, is it possible to select which blog to send a post to using the write api?
I am using OAuth based calls to API.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

守望孤独 2024-11-10 16:16:19

要获取用户的帐户信息,您需要发送 POST 请求来调用 http://www.tumblr.com首先 /api/authenticate 。如果您已经使用 OAuth 进行了身份验证,则不需要发送电子邮件和密码作为参数,但您仍然需要调用此方法来获取用户拥有的博客列表。

当您发送 POST 请求来调用 http://www.tumblr.com/api/write ,您需要发送一个名为“group”的附加参数才能发布到非默认日志。 如果是公共博客,则group 参数的值应为:

  • 'blogname.tumblr.com' 如果是
  • 私人博客,则为 private-id

To get a user's account information, you need to send a POST request to call http://www.tumblr.com/api/authenticate first. If you have already authenticated using OAuth, you don't need to send email and password as parameters, but you still need to call this method to get a list of blogs the user has.

When you send a POST request to call http://www.tumblr.com/api/write, you need to send an additional parameter called 'group' to post to a non-default log. The value of group parameter should be:

  • 'blogname.tumblr.com' if it's a public blog
  • private-id if it's a private blog
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文