Sunucu yanıtını kontrol edin

Sunucu yanıtı
NS kayıtları
Whois alanı
Yanıt başlıkları
İstek başlıkları
Ham HTML kodu
200 OK - zffip.com
HTTP Status: 200
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Server: nginx
Date: Sat, 24 May 2025 16:46:21 GMT
Content-Type: text/html; charset=utf-8
Transfer-Encoding: chunked
Connection: keep-alive
Vary: Accept-Encoding

HTTP Kodu 200 OK

200 durum kodu, standart bir başarılı HTTP sunucu yanıtıdır. Bu, istemcinin isteğinin (örneğin, bir tarayıcıdan) başarıyla işlendiği ve sunucunun istenen verileri ilettiği anlamına gelir.

Kod 200 ne zaman kullanılır?

  • Bir web sayfası yüklenirken
  • Bir API yanıtı başarıyla alındığında
  • Bir form veya başka bir HTTP isteği işlenirken

Kod 200 kullanıcı için ne anlama gelir?

Kullanıcı içeriği hatasız alır ve sayfa veya uygulama düzgün çalışır. Kod 200'e veri eşlik ediyorsa, tarayıcı veya program bunu işler ve kullanıcıya görüntüler.

GET / HTTP/1.1
Host: zffip.com
Accept: */*
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
<!doctype html>
<html lang="zh-CN">
  <head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <!-- 上述3个meta标签*必须*放在最前面,任何其他内容都*必须*跟随其后! -->
    <title></title>

    <!-- Bootstrap -->
    <link rel="stylesheet" href="public/static/html2/css/bootstrap.min.css">
	
	
	
	
	
    <!-- HTML5 shim 和 Respond.js 是为了让 IE8 支持 HTML5 元素和媒体查询(media queries)功能 -->
    <!-- 警告:通过 file:// 协议(就是直接将 html 页面拖拽到浏览器中)访问页面时 Respond.js 不起作用 -->
    <!--[if lt IE 9]>
      <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/html5shiv.min.js"></script>
      <script src="https://cdn.jsdelivr.net/npm/[email protected]/dest/respond.min.js"></script>
    <![endif]-->
  </head>
  <body>


<div class="container">
	<div style="margin-top:10%">
		<div class="shadow-lg p-3 mb-5 bg-white rounded">
				<div class="card">
					  <div class="card-header">
						<ul class="nav nav-tabs card-header-tabs">
						  <li class="nav-item">
							<a class="nav-link active" href="#">生成API</a>
						  </li>
						  <li class="nav-item">
							<a class="nav-link" href="//item.taobao.com/item.htm?ft=t&amp;id=859841312822">续费时间</a>
						  </li>
						</ul>
					  </div>
					 
					 
					  <div class="card-body">
								<form>
								  <div class="form-group">
									  <label>秘钥令牌*</label>
									  <input type="text" class="form-control" id="token" placeholder="请输入秘钥令牌">
								  </div>
								  
								  <div class="form-group">
									<label>提取数量</label>
									<input type="text" class="form-control" id="number" placeholder="请输入需要提取的数量">
								  </div>
								  
								 <div class="form-group">
								  
									<label>协议类型</label>
								   

								<select class="custom-select" size="3" multiple id="type">
								  <option selected value="https">http/https</option>
								  <option value="socket4">socks4</option>
								  <option value="socket5">socks5</option>
								</select>


								  </div>
								  
								  
								  <div class="form-group">
									  <label for="inputState">分割符号</label>
									  <select id="format" class="form-control">
									  <option value="1">回车换行(\r\n)</option>
									  <option value="2">回车(\r)</option>
									  <option value="3">换行(\n)</option>
									  </select>
								  </div>
								  
								  <div class="form-group">
									<label>API链接预览</label>
									<input type="text" class="form-control" id="url" placeholder="">
								  </div>
								  
								  <!--<button type="button" class="btn btn-outline-primary btn-lg btn-block">确认生成</button>-->
								</form>
								
						</div>
				</div>  
		</div>
	</div>
</div>
	
	

    
	<!-- jQuery (Bootstrap 的所有 JavaScript 插件都依赖 jQuery,所以必须放在前边) -->
    <script src="public/static/html2/js/jquery-2.1.1.min.js"></script>
    	
	
	
	<script>
var type = ""
url = "http://zffip.com/api/get?token="
$('#token,#number').on('input',function(){
		type=$("#type").val()
		url = "http://zffip.com/api/get?token="+$("#token").val()+"&number="+$("#number").val()+"&type="+type+"&format="+$("#format").val()
		$("#url").val(url)
})
$('#http,#https,#socket4,#socket5').on('change',function(){
	if($('#http').prop('checked'))
	{
		type="http,"
	}
	if($('#https').prop('checked'))
	{
		type=type+"https,"
	}
	if($('#socket4').prop('checked'))
	{
		type=type+"socket4,"
	}
	if($('#socket5').prop('checked'))
	{
		type=type+"socket5,"
	}
	type=type.substring(0, type.length-1)
	url = "http://zffip.com/api/get?token="+$("#token").val()+"&number="+$("#number").val()+"&type="+type+"&format="+$("#format").val()
	$("#url").html(url)
})
$('#format,#type').on('change',function(){
	type=$("#type").val()
	url = "http://zffip.com/api/get?token="+$("#token").val()+"&number="+$("#number").val()+"&type="+type+"&format="+$("#format").val()
	$("#url").val(url)
})
  var _url = new URL(window.location.href)
  var params = new URLSearchParams(_url.search);
  var token = params.get("token");
  $("#token").val(token)
	</script>
  </body>
</html>
                               

Alan adının whois bilgisi

Domain Name: ZFFIP.COM
Registry Domain ID: 2939168500_DOMAIN_COM-VRSN
Registrar WHOIS Server: whois.dnspod.cn
Registrar URL: http://www.dnspod.cn
Updated Date: 2024-12-02T23:55:15Z
Creation Date: 2024-12-02T23:53:25Z
Registry Expiry Date: 2025-12-02T23:53:25Z
Registrar: DNSPod, Inc.
Registrar IANA ID: 1697
Registrar Abuse Contact Email: [email protected]
Registrar Abuse Contact Phone: +86.4009100100
Domain Status: ok https://icann.org/epp#ok
Name Server: CECIL.DNSPOD.NET
Name Server: LOSS.DNSPOD.NET
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of whois database: 2025-05-24T16:46:13Z <<<
For more information on Whois status codes, please visit https://icann.org/epp
NOTICE: The expiration date displayed in this record is the date the
TERMS OF USE: You are not authorized to access or query our Whois
by the following terms of use: You agree that you may use this Data only
to: (1) allow, enable, or otherwise support the transmission of mass