2
我試圖創建一個登錄的Joomla網站絲毫的python pycurl小腳本, IM寫這樣的代碼:pycurl登錄的Joomla網站
import sys, re
import pycurl
import cStringIO
import time
import urllib
def LoginJoomla(url):
buf = cStringIO.StringIO()
c = pycurl.Curl()
c.setopt(c.URL, url)
post_params = [('usrname','admin'),('passwd','1234567789'),('submit','Login')]
resp_data = urllib.urlencode(post_params)
c.setopt(c.POSTFIELDS, resp_data)
c.setopt(pycurl.POST, 1)
c.setopt(c.WRITEFUNCTION, buf.write)
c.perform()
html = buf.getvalue()
buf.close()
print html
LoginJoomla("http://www.domain.com/administrator/index.php?option=com_user&view=login")
蝙蝠不工作,給我正常的登錄網頁, 請任何機構可以說我在哪裏我錯了。
感謝您的回覆 – AutoSoft 2013-03-17 13:28:05