PHP MetaWeblog API 服务器
有没有使用 Metaweblog api 的 PHP 类或资源? 我想将此 api 添加到我自己的 cms(如 wp)中,以便其他应用程序可以轻松发布(或...)抛出它
Is there any PHP class or resource for using Metaweblog api ?
I want to add this api to my own cms (like wp) so that other application could easily post (or ...) throw it
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 PHP 中实现 MetaWeblog API http://www.xmlrpc.com/metaWeblogApi。
我查看了我链接的这个脚本,以获取开发我当前正在使用的实现的灵感。请随意使用下面的示例代码作为实现元博客 API 的示例 - 但请考虑使用现代 XMLRPC 库。我包含了示例代码所需的原始“xmlrpc.php”文件的修改版本的链接。
以下是示例代码使用的 xmlrpc 库:经过修改以与 PHP 5.4 配合使用的 XMLRPC 库 - 最初由 Keith Devens 编写。
在 packagist 上进行快速软件包搜索还提供了许多很棒的选项,这些选项在术语上更具前瞻性PHP 标准。 ZendFramework2 甚至包含一个组件,您可以在项目中使用最少的依赖项(10 个包 - 不是整个框架)。我强烈建议按原样使用此示例代码,并且任何新开发都使用现代 XMLRPC 库来完成。
在此处添加示例代码,以防第一个链接失效:
Implementation of the MetaWeblog API http://www.xmlrpc.com/metaWeblogApi in PHP.
I looked to this script I linked for inspiration to develop the implementation I'm currently using. Feel free to use the example code below as an example of implementing the metaweblog API - but please consider using a modern XMLRPC library. I've included a link to a modified version of the original "xmlrpc.php" file that the example code requires.
Here's the xmlrpc library the example code utilizes: XMLRPC library modified to work with PHP 5.4 - originally written by Keith Devens.
Doing a quick package search on packagist also provides many great options that are much more forward thinking in terms of PHP standards. ZendFramework2 even includes a component you can use in your project with minimal dependencies (10 packages - not the entire framework). I would strongly recommend that this example code, be used as such, and any new development be done with a modern XMLRPC library.
Adding the example code here in case the first link dies: