Country :
Use Idp :


Use this code to generate the list :
The directory /InAcademia should be a git clone from https://github.com/InAcademia/aarc_idp_hint/
$idps = array ();
$URL = '/InAcademia/se.json';
$countryJSON = file_get_contents($URL);
$idpList = json_decode($countryJSON, true);
foreach ($idpList as $hint => $idp) {
  $name = $idp['en'];
  $idps[$name] = $hint;
}