Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

This is my python codeļ¼ŽI want to log in this website with python, but it can't come true, i don't know why, anybody can help me? it is urgent,thanks!!!

 import sys, time, os, re
 import urllib, urllib2, cookielib

 loginurl = 'https://auth.dxy.cn/login?null'
 #loginurl = 'https://www.douban.com/accounts/login'

 cookie = cookielib.CookieJar()
 opener = urllib2.build_opener(urllib2.HTTPCookieProcessor(cookie))
 urllib2.install_opener(opener)

 params = {
         'username' : 'XXXX',
         'password' : 'XXXX',
         'lt' : '_c573C07C4-AD13-CD25-85E9-CC917AF0433F_k42B35CAA-C2E7-7B2C-A7A1-9FD4E6CBE30F',
         '_eventId' : 'submit'
         }

 req = urllib2.Request(loginurl,urllib.urlencode(params))
 res = urllib2.urlopen(req).read()
 m = re.search(r'\s+(.+?)\s+',str(cookie))
 jsession=re.sub(r'\s+', '', m.group(0))
 #print jsession

 header={'Cookie':jsession}
 #response=opener.open(req).read()
 req1 = urllib2.Request(loginurl,urllib.urlencode(params),header)
 res1 = urllib2.urlopen(req1)
 print res1.geturl()

 response1=opener.open(res1.geturl())
 print response1.read()
share|improve this question
Is there an error? What is the result of the print statements? – inspectorG4dget Aug 21 '12 at 6:07
no error, the result of the print statements is still the log in webset – user1613263 Aug 21 '12 at 6:46

1 Answer

up vote 0 down vote accepted

Ive had similar problems before because of user-agent issues. Try log in normally (via your browser of choice) and take a look at whatever header info is sent. Try mimic that in your script.

If you don't know how to set the headers check this out: How do I add a header to urllib2 opener?

share|improve this answer
thanks!!! the problem is resolved now – user1613263 Aug 21 '12 at 8:56
1  
please mark this as the correct answer if that's what it is. Otherwise post your answer – Sheena Aug 21 '12 at 10:46
sorry, this is my first time – user1613263 Aug 22 '12 at 3:25
no worries. thanks and welcome – Sheena Aug 22 '12 at 9:22

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.