Du kan tjekke validiteten af din API token på adressen https://doknet.dk/api/check-access
Nedenfor et eksempel på hvordan en API token kan valideres ved hjælp af PHP og curl
<?php // The authorization token $authorization = "Authorization: Bearer <token>"; // Setup cURL $ch = curl_init('https://doknet.dk/api/check-access'); curl_setopt_array($ch, array( CURLOPT_RETURNTRANSFER => TRUE, CURLOPT_SSL_VERIFYPEER => false, CURLOPT_HTTPHEADER => array( 'Content-Type: application/json', $authorization ), )); // Send the request $response = curl_exec($ch); // Check for errors if($response === FALSE){ die(curl_error($ch)); } // Print the data from the response echo $response . PHP_EOL; ?>