18年11月下旬にRSSの取得先が変わったようです。
PHPとcurlを利用した、
新しいエンドポイントからRSSを取得する例です。
GoogleNewsのRSSが$newsにSimpleXMLElement型で代入されます。
//18/12/20ごろまで'https://news.google.com/_/rss/search?q='.urlencode($keyword).'&oe=UTF-8&num=30&hl=ja&gl=JP&ceid=JP:ja';
$endpoint = 'https://news.google.com/rss/search?q='.urlencode($keyword).'&oe=UTF-8&num=30&hl=ja&gl=JP&ceid=JP:ja';
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $endpoint);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$output = curl_exec($ch);
curl_close($ch);
$news = simplexml_load_string($output);