我是一個Python新手,所以請原諒我。我在Google和SA上搜索過但找不到任何東西。無論如何,我正在使用Python庫Wordpress XMLRPC。Python的Wordpress-XMLRPC:ServerConnectionError:<ProtocolError 301永久移動
myblog
,myusername
和mypassword
只是佔位隱藏我的真實的網站,用戶名和密碼。當我運行代碼時,我使用了我的真實數據。
我的代碼:
from wordpress_xmlrpc import *
wp = Client('http://www.myblog.wordpress.com/xmlrpc.php', 'myusername', 'mypassword')
的錯誤:
Traceback (most recent call last):
File "C:/Python27/wordpress_bro", line 2, in <module>
wp = Client('http://www.myblog.wordpress.com/xmlrpc.php', 'myusername', 'mypassword')
File "build\bdist.win32\egg\wordpress_xmlrpc\base.py", line 27, in __init__
raise ServerConnectionError(repr(e))
ServerConnectionError: <ProtocolError for www.myblog.wordpress.com/xmlrpc.php: 301 Moved Permanently>
當我去http://www.myblog.wordpress.com/xmlrpc.php
在瀏覽器中,我得到:
XML-RPC server accepts POST requests only.
可能有人請幫助我嗎?
謝謝!
我面臨同樣的問題,你是否發現有什麼問題? – permalac
是的,這是wordpress.com的問題。如果你自己設置wordpress安裝,它會起作用。 Wordpress.com已禁用XMLRPC。 – user3302735