我正在嘗試訪問使用Symfony框架設計的本地網站。 它與網絡瀏覽器和CURL完美結合,但是當我使用機械化時,我總是得到401服務器未經授權的答案。Symfony和機械化
import mechanize
# Browser
br = mechanize.Browser()
br.set_debug_http(True)
br.set_debug_redirects(True)
br.set_debug_responses(True)
# Does not change anything even if we change thos
br.addheaders = [('User-agent', 'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.0.1) Gecko/2008071615 Fedora/3.0.1-1.fc9 Firefox/3.0.1')]
# Here is my website
r = br.open('http://localhost:8080/frontend_dev.php/home')
html = r.read()
# Show the html source
print html
你知道爲什麼它的行爲如此嗎?
謝謝
Symfony命中與否?它會發生什麼,你寫死(「命中」);在frontend_dev.php文件的頂部? – greg0ire
如果我死了(「命中」);我看到了命中和沒有401錯誤。 – lc2817