Skip to content
컴퓨터잡담
2009.06.30 15:37

curl로 다음 자동로그인 가능하다.

조회 수 28914 추천 수 0 댓글 2
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄

curl로 다음 자동로그인 가능하다.



$loginUrl = 'https://logins.daum.net/Mail-bin/login.cgi?dummy=1238466344458'; 
$login_data = 'enpw=비밀번호&id=아이디&pw=비밀번호&url=http://www.daum.net&webmsg=-1'; 
$cookie_nm = "./cookie.txt"; 

$ch = curl_init(); 
curl_setopt ($ch, CURLOPT_URL,$loginUrl); //접속할 URL 주소 
curl_setopt ($ch, CURLOPT_SSL_VERIFYPEER, FALSE); 
curl_setopt ($ch, CURLOPT_SSLVERSION,1); 
curl_setopt ($ch, CURLOPT_HEADER, 1); 
curl_setopt ($ch, CURLOPT_POST, 1); 
curl_setopt($ch, CURLOPT_COOKIEJAR, $cookie_nm); 
curl_setopt($ch, CURLOPT_COOKIEFILE, $cookie_nm); 
curl_setopt($ch, CURLOPT_POSTFIELDS, $login_data); 
curl_setopt ($ch, CURLOPT_TIMEOUT, 30); 
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1); 
$result = curl_exec ($ch); 

curl_setopt ($ch, CURLOPT_URL,"http://www.daum.net/"); //접속할 URL 주소 
curl_setopt($ch, CURLOPT_COOKIEJAR, $cookie_nm); 
curl_setopt($ch, CURLOPT_COOKIEFILE, $cookie_nm); 
$result = curl_exec ($ch); 
curl_close ($ch); 
echo $result; 

로그인 후 댓글쓰기가 가능합니다.

?
  • ?
    jp 2009.08.13 05:40
    어라 제가 작성한거네요 ㅎ
  • ?
    디케 2009.08.13 17:25

    혹시 저한테 답변해주신분 맞으신가요? ^^;;

    도움 잘 받았습니다. ㅋㅋ;;


  1. 05
    Feb 2010
    08:55

    HTML 엔티티(Entities)

    Category컴퓨터잡담 Views10844
    Read More
  2. 03
    Feb 2010
    10:29

    자바스크립트 변수를 php로 옮기기

    Category컴퓨터잡담 Views24961
    Read More
  3. 01
    Feb 2010
    08:08

    구글의 Ajax 다국어 번역 API

    Category컴퓨터잡담 Views15637
    Read More
  4. 30
    Jan 2010
    10:19

    html_entity_decode [HTML엔티티를 => 특수문자로 변환

    Category컴퓨터잡담 Views16473
    Read More
  5. 24
    Jan 2010
    12:56

    [DOS모드] ftp 자동 전송기능, 도스배치명령으로 FTP 사용하기

    Category컴퓨터잡담 Views20523
    Read More
  6. 21
    Jan 2010
    13:14

    API Hooking 유저 레벨 루트킷

    Category컴퓨터잡담 Views11623
    Read More
  7. 21
    Jan 2010
    13:06

    tasklist /SVC svchost 시스템 서비스 프로세스 보기

    Category컴퓨터잡담 Views8117
    Read More
  8. 21
    Jan 2010
    10:38

    프로세스 숨기고 복구하기

    Category컴퓨터잡담 Views7199
    Read More
  9. 23
    Dec 2009
    11:18

    SendMessage the values are for wparam

    Category컴퓨터잡담 Views8203
    Read More
  10. 22
    Dec 2009
    18:44

    postmassge 마우스 & PixelGetColor &

    Category컴퓨터잡담 Views7945
    Read More
Board Pagination Prev 1 ... 211 212 213 214 215 ... 235 Next
/ 235

http://urin79.com

우린친구블로그

sketchbook5, 스케치북5

sketchbook5, 스케치북5

나눔글꼴 설치 안내


이 PC에는 나눔글꼴이 설치되어 있지 않습니다.

이 사이트를 나눔글꼴로 보기 위해서는
나눔글꼴을 설치해야 합니다.

설치 취소