如何使用 api 向 WordPress 发帖?

发布于 2024-08-19 15:56:07 字数 122 浏览 2 评论 0原文

在用户使用 wordpress api 向我提供登录信息后,如何远程在用户的博客上发帖?我需要使用什么方法,它应该有什么参数等等?示例代码会很棒。

我更喜欢使用 XML-RPC api,但其他 API 也可以接受。

How can I remotely make a post to a user's blog after he/she gives me his login info using the wordpress api? What method do i need to use, what paremeters should it have, etc? Sample code will be great.

I'd prefer to use the XML-RPC api but others will also be acceptable.

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

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

发布评论

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

评论(2

恰似旧人归 2024-08-26 15:56:07

是的,您可以使用 metaWeblog.newPostblogger.newPost,第一个示例:

http://www.wprecipes.com/post-on-your-wordpress-blog-using-php

使用curl和xmlrpc_encode_request作为

示例第二个:

http://www.nickycakes。 com/post-to-wordpress-remotely-with-xmlrpc-in-php/

是的,@Francis 是正确的

yeah you can use metaWeblog.newPost or blogger.newPost, an example of the first:

http://www.wprecipes.com/post-on-your-wordpress-blog-using-php

uses curl and xmlrpc_encode_request

an example of the second:

http://www.nickycakes.com/post-to-wordpress-remotely-with-xmlrpc-in-php/

yeah and @Francis is correct

恋你朝朝暮暮 2024-08-26 15:56:07

我个人使用 JSON API 插件。使用以下命令创建帖子:

http://www.example.com/api/create_post/?nonce=123456789&title=My%20Post&status=publish

I personally use the JSON API plugin. Create a post using:

http://www.example.com/api/create_post/?nonce=123456789&title=My%20Post&status=publish
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文