네이버 카페 인증 예제소스
Private WinHttp As New WinHttpRequest는 맨 윗부분에.
WinHttp.Open "POST", "http://nid.naver.com/nidlogin.login"
WinHttp.SetRequestHeader "Referer", "https://nid.naver.com/nidlogin.login"
WinHttp.SetRequestHeader "Content-Type", "application/x-www-form-urlencoded"
WinHttp.Send "id=" & 아이디 & "&pw=" & 비밀번호 & "&enctp=2&smart_level=-1"
If InStr(WinHttp.ResponseText, "sso/cross-domain.nhn") Then
WinHttp.Open "GET", "http://cafe.naver.com/" & 카페뒷주소
WinHttp.Send
If InStr(StrConv(WinHttp.ResponseBody, vbUnicode), "카페 멤버만 보실 수") Then
MsgBox "카페에 가입되어 있지 않습니다.", vbExclamation, "에러!"
Else
MsgBox "로그인 성공!", vbInformation, "알림"
End If
Else
MsgBox "아이디 또는 비밀번호가 틀렸습니다.", vbExclamation, "에러!"
End If
'소스 관련' 카테고리의 다른 글
비주얼베이직 네이트온 접속 관련 함수 (0) | 2012.06.28 |
---|---|
스타크래프트 로그인 시 메세지 한글화 (0) | 2012.06.28 |
위젯 용량체크 모듈 (0) | 2012.06.28 |
배틀넷 PHP 트래커 by MuleSlow (1) | 2012.03.14 |
C# 배틀넷 레지스트리 편집 (0) | 2012.03.14 |