묻고답하기

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 남기남
jjjnnn 블로그형 스킨 바꿨는데요 [1] 2011.02.17 by 아아악내눈
tooren 메인페이지 게시물 출력이 되지 않습니다. ㅠㅠ [1] 2011.02.17 by ToFinder
눅아신고했니? 모바일 접속시.  
천성민546 안녕하세요. 고수님들 부탁좀 드릴게요. [2] 2011.02.17 by SMaker
S시온스S 계정정보 외부에서 알아내는방법없나요? [1] 2011.02.17 by ToFinder
JinkPark 홈페이지를 즐겨찾기 추가하는 위젯 [1] 2011.02.17 by ToFinder
마분지121 비회원 추천 가능하게, 무제한 추천 가능하게 하는 방법이 궁금합니다  
연인의삶 게시판 글쓰기가 안되는 이유는 무엇일까요? [1] 2011.02.17 by 연인의삶
서정재732 Fatal error : Allowed memory size ...이런 에러가 계속나네요. [1] 2011.02.17 by 비밀얌
시부타쿠 페이지내에 위젯 직접 추가에 대해서 질문 좀 드리겠습니다^^;; [1] 2011.02.17 by 아아악내눈
블딩 레이아웃 질문입니다. [1] 2011.02.17 by 아아악내눈
CrowTM 레이아웃 문의 드립니다. [1] 2011.02.17 by 아아악내눈
김진호313 요청하신 기능을 실행할 수 있는 권한이 없습니다 [1] 2011.02.17 by 아아악내눈
아아악내눈 게시판에 작성자 아이디 옆에 추가정보를 출력하고 싶습니다.  
.J. FTP 디렉토리 변경에 관한 질문 zbxe -> xe [1] 2011.02.17 by 아아악내눈
이동일636 서버를 직접 세팅해서 사용중인데 UTF-8 , euc-kr 같이 쓸수있나요??? [1] 2011.02.17 by 아아악내눈
.J. xe 수동으로 버전 업데이트 하려면 .. [1] 2011.02.17 by 공듀
.J. 필요 없어진 레이아웃, 모듈, 스킨 삭제 방법 [1] 2011.02.16 by 공듀
lody 시작 모듈 삭제 또는 설정하는 방법 질문이요  
김재순 자유게시판스킨은 무엇인가요? [1] 2011.02.16 by 공듀
배워서남준다 외부페이지에 전역변수 사용할 수 있나요? [2] 2011.02.16 by 배워서남준다
이재찬631 회원가입 정보가 저장이 안됩니다.  
박자경704 3차 메뉴 출력 안보이게 하고 싶어요 [1] file 2011.02.16 by 오르막
위경섭 외부솔루션과 회원연동에 대하여 [1] 2011.02.16 by 라르게덴
KaKajeen DB에 xe_member테이블이 없어요.. [1] 2011.02.16 by 라르게덴
RainDrop+ 404 NotFound Error... 스팸필터때문인가요 [1] 2011.02.16 by 라르게덴
빨간발 본문 글자 확대축소 기능 - XE에서는 이 기능 구현에 어려움이 있나요? [1] 2011.02.16 by 라르게덴
톨톨 제로보드xe로 구인구직 사이트 제작이 가능할까요? [1] 2011.02.16 by llover
마분지121 최근게시물 내용 줄바꿈까지 표시되게 하는법이 궁금합니다  
김락중 XE버전의 FCK에디터에 관한건데요