반응형
import urllib, urllib2, cookielib
username = 'username'
password = 'password'
cj = cookielib.CookieJar()
opener = urllib2.build_opener(urllib2.HTTPCookieProcessor(cj))
login_data = urllib.urlencode({'username' : username, 'j_password' : password})
opener.open('http://friends.cisv.org/index.cfm', login_data)
resp = opener.open('http://friends.cisv.org/index.cfm?fuseaction=activities.list')
print resp.read()
하지만 그 결과 다음과 같은 결과가 나왔습니다.
<SCRIPT LANGUAGE="JavaScript">
alert('Sorry. You need to log back in to continue. You will be returned to the home page when you click on OK.');
document.location.href='index.cfm';
</SCRIPT>
내가 뭘 잘못하고 있죠?
해결 방법
아래 코드는 사이트에 로그인하고 세션 기간 동안 쿠키를 유지합니다.
import requests
import sys
EMAIL = ''
PASSWORD = ''
URL = 'http://friends.cisv.org'
def main():
# Start a session so we can have persistant cookies
session = requests.session(config={'verbose': sys.stderr})
# This is the form data that the page sends when logging in
login_data = {
'loginemail': EMAIL,
'loginpswd': PASSWORD,
'submit': 'login',
}
# Authenticate
r = session.post(URL, data=login_data)
# Try accessing a page that requires you to be logged in
r = session.get('http://friends.cisv.org/index.cfm?fuseaction=user.fullprofile')
if __name__ == '__main__':
main()
참조 페이지 https://stackoverflow.com/questions/8316818
반응형
'파이썬' 카테고리의 다른 글
파이썬 Python 인스턴스 변수는 스레드로부터 안전합니까? (0) | 2020.09.22 |
---|---|
파이썬 Insert list into my database using Python (0) | 2020.09.22 |
파이썬 Python : 'math'라는 이름이 정의되지 않았습니다. 오류? (0) | 2020.09.22 |
파이썬 Python을 사용하여 Microsoft Access 데이터베이스를 읽으려면 무엇이 필요합니까? (0) | 2020.09.22 |
파이썬 목록이있는 Python 연결 문자열 (0) | 2020.09.21 |
댓글