묻고답하기

sreenshot.JPG


이러한 로그인 페이지를 XE를 통해 만들 수 있나요?
XE가 안된다면 제로보드 4에서는 가능한가요?
XE자체적인 질문이 아니라 죄송합니다. 가능하면 XE회원관리 시스템과 연동되면 여러모로 이점이 있을거 같습니다.
그리고 무엇보다 제가 아는게 없습니다ㅜㅜ

----------------------------------------------------------------------------------------------------------

원래 질문은 스마트폰 앱에 연동할 HTTP request 페이지를 만드는 것이었습니다..
(http://allseeing-i.com/top_secret/)

출처: http://allseeing-i.com/ASIHTTPRequest/How-to-use

Handling HTTP authentication

If you're connecting to a server that requires authentication, you
might want to take a look at this flowchart that shows how ASIHTTPRequest finds
and applies credentials to requests.

Specifying a username and password to use in the URL

NSURL *url = [NSURL URLWithString:@"http://username:password@allseeing-i.com/top_secret/"];

ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:url];

Setting a username and password to use on the request

NSURL *url = [NSURL URLWithString:@"http://allseeing-i.com/top_secret/"];

ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:url];

[request
setUsername:@"username"];

[request
setPassword:@"password"];

Storing credentials in the keychain

If you turn
on keychainPersistence, any valid username and password supplied will be
stored in the keychain. Subsequent requests will reuse the username and password
from the keychain, even if you quit and relaunch the application.

NSURL *url = [NSURL URLWithString:@"http://allseeing-i.com/top_secret/"];

ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:url];

[request
setUseKeychainPersistence:YES];

[request
setUsername:@"username"];

[request
setPassword:@"password"];

If you want to use
the keychain but would rather manage it yourself, you might find the class
methods relating to the keychain in ASIHTTPRequest.h helpful.

Storing credentials in the session

If useSessionPersistence is turned on (it is by default),
ASIHTTPRequest stores credentials in memory and can re-use them for subsequent
requests.

NSURL *url = [NSURL URLWithString:@"http://allseeing-i.com/top_secret/"];

ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:url];

[request
setUsername:@"username"];

[request
setPassword:@"password"];

[request
setUseSessionPersistence
:YES]//Shouldn't be needed as this is the default

 

//Should reuse our username and password

request = [ASIHTTPRequest requestWithURL:url];

NTLM authentication

To authenticate with
a Windows server that uses the NTLM scheme, you also need to specify the domain
you are authenticating against.

NSURL *url = [NSURL URLWithString:@"http://my.windows.server/top_secret/"];

ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:url];

[request
setUsername:@"username"];

[request
setPassword:@"password"];

[request
setDomain:@"my-domain"];

<style>iframe.openscrap_video_v1{width:100%; height:180px;margin-bottom:20px;}</style> <style>iframe.openscrap_shopping_v1{width:100%; height:180px;margin-bottom:20px;}</style> <style>iframe.openscrap_post_v1{width:100%; height:180px;margin-bottom:20px;}</style>

글쓴이 제목 최종 글
XE 공지 글 쓰기,삭제 운영방식 변경 공지 [16] 2019.03.05 by 남기남
몰라962 순차적으로 확장변수 선택...  
웰즈 xe로 이런 로그인 페이지 만드는 방법이 있나요? [1] 2011.01.27
dda 스크랩 기능을 없애려면 어떻게 해야하나요?  
곰지님 sejin7940 게시판 스킨을 사용중입니다. 문제점이 있어서 질문드립니다 ㅠㅠ [1] 2011.01.27 by 동탄간지
_writer 사이트에 접속해있으면 계속 새로고침 하라고 뜹니다.  
lostings 배너 링크를 게시물이 아닌 다른 페이지로 거는 법....  
cqstory 게시판 댓글 쓰는곳에  
highway 마우스 오버시 2차메뉴 색  
아제나 error 라고 창이 뜰 경우에 무슨 문제인지 확인하는 방법? [1] 2011.01.27 by 한신일
김표 메뉴트리가 보이지 않네요. [1] 2011.01.27 by 러키군
배성필 id/비밀번호 찾기 할 때 메일이 오지 않습니다. [1] 2011.01.27 by 공듀
때린데 또때려 게시판에서 아래와 같이 에디터 창을 적용할려면 어떻해야 하나요? [1] 2011.01.27 by 공듀
헬로우동동주 로그인/회원가입 페이지...  
bato1208 친구등록을 안보이게 하려면 어떻게 해야하나요? [1] 2011.01.26 by 변사장
김기태155 댓글을 달면 회원등급이 내려가는 이유는 뭘까요?  
동수기 상대방 컴퓨터로 파일전송 [1] 2011.01.26 by SeklutZ
월하선향 템플릿 문법 [1] 2011.01.26 by SeklutZ
내사랑내곁에 요청하신 모듈을 찿을수 없읍니다 [1] 2011.01.26 by SeklutZ
가스통 게시판 내용 중 본문만 출력되게 할 수 있는지요??  
월잉 접기 태그에 관해 질문드립니다.  
테크닉멸치 bodex게시판의 비회원 이메일 홈폐이지는 어떻게 삭제하나요 ? [1] 2011.01.26 by SeklutZ
청춘개똥 새 글 알림 메일이 됬다 안됬다 하는 이유가 뭔가요?? [1] 2011.01.26 by SeklutZ
수아아빠™ 익스플로러>보기>텍스트 크기>가장작게 영향받지 않으려면 어떻게 해야 하나요? [3] 2011.01.26 by 백성찬
make홈페이지 빈 홈페이지에 이미지 넣는 방법 [1] 2011.01.26 by 공듀
Brian Lee XE를 두개 깔려다가 망했어요.. [2] 2011.01.26 by 불패의초인
말라랑칼물렁컹이 로그인 하면 success 안뜨고 로그인 했던페이지로 가는 방법  
JK이동진 [질문] XE에 BGM(배경음악) 넣을순 없나요? [2] 2011.01.26 by 불패의초인
인혁군 배경음악을 넣었는데요 문제가있습니다 [1] 2011.01.26 by misol
지영배 윈도 2008 r2, iis 7.5, php 5.3.4, mysql 5.5.8에서 설치가 안됩니다.  
terabuster 게시판 모듈(?)의 높이지정이 안되네요 [1] file 2011.01.26 by 착한악마