Update api.whois.kr.php

This commit is contained in:
Namhyeon Go 2019-05-26 00:45:36 +09:00 committed by GitHub
parent bbbc208893
commit ecfbebb645
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,12 +15,14 @@ if(!check_function_exists("get_whois_kr")) {
$response = get_web_json("http://whois.kisa.or.kr/openapi/whois.jsp", "get.cache", array( $response = get_web_json("http://whois.kisa.or.kr/openapi/whois.jsp", "get.cache", array(
"query" => $name, "query" => $name,
"key" => $key, "key" => $key,
"answer" => "json",
)); ));
break; break;
case "ipascc": case "ipascc":
$response = get_web_json("http://whois.kisa.or.kr/openapi/ipascc.jsp", "get.cache", array( $response = get_web_json("http://whois.kisa.or.kr/openapi/ipascc.jsp", "get.cache", array(
"query" => $name, "query" => $name,
"key" => $key, "key" => $key,
"answer" => "json",
)); ));
break; break;
} }