外部サービスのAPIを読み込む必要があって、その時の記述方法を記録しています。

JSの場合はajaxとはまた違う読み込み方があるんですね。

 

【PHP】

// APIアクセスURL
$url = 'https://hogehoge.comcom/test;
$options = array(
  'http' => array(
    'method'=> 'GET',
    'header'=> 'Content-type: application/json; charset=UTF-8' //JSON形式で表示
  )
);
$context = stream_context_create($options);
$raw_data = file_get_contents($url, false,$context);

// jsonの内容を$dataに格納
$data = json_decode($raw_data, true);

 

【JS】


// APIアクセスURL
var url = 'https://hogehoge.comcom/test;
request.open('GET', url, true);
request.onload = function () {
  var data = this.response;
  console.log(data);
}
request.send();

このあとはJSONタイプの情報をどのように使うかがカギになるというわけなんですよね。

それはソースの内容次第ということで。