Python 네트워크 파충류 의-HTTP 프로 토 콜 원리

2543 단어 Python
Python 네트워크 파충류 의-HTTP 프로 토 콜 원리
파충류 의 http 기본 원리
브 라 우 저 분석 개요
쿠키 기술
1.파충류 의 http 기본 원리
  • URI(통일 자원 표시 자)에 포함(URL/URN)
  • HTTP(하이퍼텍스트 전송 프로 토 콜)/HTTPS(콘돔 연결 층 의 하이퍼텍스트 전송 프로 토 콜/Hyper Text Protocol over Security Socket Layer)의 차이 점:HTTP:ssl 프로 토 콜 을 암호 화하 지 않 고 광범 위 하 게 사용 되 는 것 은 http 1.1 프로 토 콜 HTTPS:ssl 암호 화 프로 토 콜 을 추가 하여 전송 측면 에서 향상 되 었 고 CA 인증서 전체 사이트 의 진실성 과 신뢰성 을 향상 시 켜 https(http 2.0)를 사용 합 니 다

  • 2.브 라 우 저 분석 개요
    1.     :
    	1. Ctrl+Shift+I        	
    	2. Client  Server   Request(  )-->Response(  )
    

    주요 네트워크 모듈 및 이 모듈 의 파일 요청 속성
    	1. General(  )
    		Request URL: #  url(       )
    		Request Method: #    (GET/POST/HEAD/more..)
    		Status Code: #     (200 OK/304/more...)
    		Remote Address: #  IP
    		Referrer Policy: #    
    	
    	2. Response Headers(    )
    		HTTP/1.1 200 OK            
    		Server:          
    		Date: Sun, 10 Nov 2019 07:31:07 GMT    #     
    		Content-Type: text/html; charset=UTF-8   #         
    		Transfer-Encoding: chunked       #    
    		Connection: keep-alive     #    
    		Expires: Thu, 19 Nov 1981 08:52:00 GMT    #      
    		Cache-Control: no-store, no-cache, must-revalidate   #    
    		Pragma: no-cache   #http/1.1           ,    http        。
    		Vary: Cookie   #          ,        
    		X-Pingback: wordpress      
    		Content-Encoding: gzip   #        
    
    	3. Request Headers(    )
    		GET /5465.html HTTP/1.1
    		Host:   
    		Connection: keep-alive   #    
    		Cache-Control: max-age=0  #    
    		DNT: 1  #    
    		Upgrade-Insecure-Requests: 1
    		User-Agent:  #         (   )
    		Sec-Fetch-Mode: navigate
    		Sec-Fetch-User: ?1
    		Accept: #      
    		Sec-Fetch-Site: same-origin   #    
    		Referer: https://cuiqingcai.com/5052.html    #                   
    		Accept-Encoding: gzip, deflate, br    #    
    		Accept-Language: zh-CN,zh;q=0.9    #     
    		Cookie: cookie   
    

    쿠키 기술
    1.   Cookie          (    )      set-cookie       \
    	                            \
    	   C/S  Client cookie           cookie。
    	
    2. **    **
    	          ,          “       ,      ”,        。\
    	            ,             ,                 。\
    	     ,    ,               ,          。\
    	  ,                     。
    	
    	           ,                      ,                     。\
    	         ,               Cookie     ID  ,\
    	       Cookies    ,        ,            。\
    	        Cookies      ,                HTTP   ,    Cookies      ,\
    	        ,            ID,             。
    	
    	                     ,                  ,\
    	                         ,\
    	                  ,              。
    

    좋은 웹페이지 즐겨찾기