GET 요청 과 POST 요청

1.GET 생 성 요청
//    1.      
    NSString *urlStr=[NSString stringWithFormat:@"http://192.168.1.53:8080/MJServer/login?username=%@&pwd=%@",self.username.text,self.pwd.text];
    NSURL *url=[NSURL URLWithString:urlStr];
    
//    2.      
    NSURLRequest *request=[NSURLRequest requestWithURL:url];
    
//    3.    

2.POST 생 성 요청
// 1.      
    NSURL *URL=[NSURL URLWithString:@"http://192.168.1.53:8080/MJServer/login"];//       
    
//    2.      
    NSMutableURLRequest *request=[NSMutableURLRequest requestWithURL:URL];//   get  
    request.timeoutInterval=5.0;//       5 
    request.HTTPMethod=@"POST";//      
    
    //     
    NSString *param=[NSString stringWithFormat:@"username=%@&pwd=%@",self.username.text,self.pwd.text];
    //           data,     
    request.HTTPBody=[param dataUsingEncoding:NSUTF8StringEncoding];
    
//    3.    

비교
권장:사용자 의 프라이버시 데 이 터 를 제출 하려 면 POST 요청 을 사용 해 야 합 니 다.
POST 요청 에 비해 GET 가 요청 한 모든 매개 변 수 는 URL 에 직접 노출 되 며,요청 한 URL 은 일반적으로 서버 의 방문 로그 에 기록 되 며,서버 의 방문 로 그 는 해 킹 공격 의 중점 대상 중 하나 이다.
 
메모:URL 에 중국 어 를 포함 할 수 없습니다.연결 매개 변수 에 중국어 가 존재 하면 전 환 된 URL 은 nil 이 므 로 URL 을 다음 과 같이 처리 해 야 합 니 다.
NSString *urlStr= @"  '";
    NSURL *url = [NSURL URLWithString:urlStr];  //    url nil
    
    NSString *newURLStr = [urlStr stringByAddingPercentEncodingWithAllowedCharacters:[NSCharacterSet URLHostAllowedCharacterSet]];
    NSURL *newURL = [NSURL URLWithString:newURLStr];  //   newURL  
    
    NSURLRequest *request = [NSURLRequest requestWithURL:newURL];

/*

@interface NSCharacterSet (NSURLUtilities)
+ (NSCharacterSet *)URLUserAllowedCharacterSet NS_AVAILABLE(10_9, 7_0);
+ (NSCharacterSet *)URLPasswordAllowedCharacterSet NS_AVAILABLE(10_9, 7_0);
+ (NSCharacterSet *)URLHostAllowedCharacterSet NS_AVAILABLE(10_9, 7_0);
+ (NSCharacterSet *)URLPathAllowedCharacterSet NS_AVAILABLE(10_9, 7_0);
+ (NSCharacterSet *)URLQueryAllowedCharacterSet NS_AVAILABLE(10_9, 7_0);
+ (NSCharacterSet *)URLFragmentAllowedCharacterSet NS_AVAILABLE(10_9, 7_0);
*/

 
4.데이터 암호 화 
글 의 정점 에서 발췌 한 것 으로,구체 적 으로 보면 http://www.cnblogs.com/wendingding/p/3813723.html 문장 이 아주 넓다.

좋은 웹페이지 즐겨찾기