想要使用开放API检索图书信息

时间:2017-07-22 21:08:50

标签: php jquery html

我学习php和html的时间不长。 最近我试图使用开放API检索书籍信息,但我很难弄清楚因为我不习惯json等。 这是我的来源。我很困惑为什么这不起作用。我想得到一些帮助。提前谢谢。

 <?php
 $ISBN = _POST['barcode'];
 $post_data = array(
 "page" => 1,
 "search_field1" => "ISBN",
 "value1" => "$ISBN",
 "maxCount" => 1,
 "per_page" => 1,
 "collection_set" => 1
 );
 $ch = curl_init();
 curl_setopt($ch, CURLOPT_URL, "http://nl.go.kr/kolisnet/openApi/open.php");
 curl_setopt($ch, CURLOPT_POST, 1);
 curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data);
 curl_exec($ch);

 print_r($ch);
 ?>

 <!DOCTYPE html>
 <html>
 <head>
 <title>barcode</title>
 </head>
 <body>

 <form action="barcode.php" method="post">
 <input type="text" name="barcode" ">
 <input type="submit" name="submit" value="submit">
 </form>

 </body>
 </html>

0 个答案:

没有答案