wordpress 编程接口记录
七月 1st, 2011
1 comment
找了很久才找到,记录下来,以备不时之需!
Blogger API 部分,这里的wordpress的blogid 用1就好了,如果实在不相信,可以先看下http://youname/xmlrpc.php 返回里面就有.
blogger.newPost
说明: 建立一则新文章,并选择性地将其出版。 参数: 字符串 appkey, 字符串 blogid, 字符串 username, 字符串 password, 字符串 content, 布尔值 publish
传回值: 成功时为新发表文章的字符串 postid ;失败时为 fault
blogger.editPost
说明: 更新既有文章的信息。 参数: 字符串 appkey, 字符串 postid, 字符串 username, 字符串 password, 字符串 content, 布尔值 publish
传回值: 成功时为布尔值 true ;失败时为 fault
