前提・実現したいこと
パラメータがURLに含まれていないPOST遷移するページをスクレイピングしたい。
下記サイトをスクレイピングしたいです。
https://www.hellowork.mhlw.go.jp/kensaku/GECA110010.do?action=initDisp&screenId=GECA110010
上記ページform内の情報を受けて下記URLに遷移するようなので、今回は都道府県とページ数を指定して検索結果を取得しようと考えています。
https://www.hellowork.mhlw.go.jp/kensaku/GECA110010.do
発生している問題・エラーメッセージ
下記エラー文が表示されています。
Notice: file_get_contents(): Content-type not specified assuming application/x-www-form-urlencoded in C:\xampp\htdocs\get_post\index.php on line 13
該当のソースコード
php
1<?php 2 3$url = "https://www.hellowork.mhlw.go.jp/kensaku/GECA110010.do"; 4$data = array( 5 "tDFK1CmbBox" => 13, 6 "fwListNaviBtn1" => 1 7); 8 9$options = array("http" => array( 10 "method" => "POST", 11 "content" => http_build_query($data), 12)); 13$text = file_get_contents($url, false, stream_context_create($options));
試したこと
コンテンツタイプの指定、ヘッダー情報がないことでのエラーではないかと下記コードを実行しましたがエラーになりました。
php
1<?php 2 3$url = "https://www.hellowork.mhlw.go.jp/kensaku/GECA110010.do"; 4$data = array( 5 "tDFK1CmbBox" => 13, 6 "fwListNaviBtn1" => 1 7); 8 9$header = array( 10 "Content-Type: application/x-www-form-urlencoded", 11 "Content-Length: ".strlen($data) 12 ); 13 14$options = array("http" => array( 15 "method" => "POST", 16 "content" => http_build_query($data), 17)); 18$text = file_get_contents($url, false, stream_context_create($options));
エラーメッセージ
Warning: strlen() expects parameter 1 to be string, array given in C:\xampp\htdocs\get_post\index.php on line 11 Notice: file_get_contents(): Content-type not specified assuming application/x-www-form-urlencoded in C:\xampp\htdocs\get_post\index.php on line 18
どうすれば情報を取得できるでしょうか?
よろしくお願いします。
回答1件
あなたの回答
tips
プレビュー