Full Post
Get Individual Post
GET /v2/spotlight/:corporation/:id
Headers
Name
Value
Content-Type
application/json
Authorization
Bearer <token>
Url
Name
Type
Description
corporation
number
Corporation ID
id
number
Unique post id
Response
{
data: {
spotlight: [],
tags: [],
seo: []
},
success: true
}Code
const accessToken = `<ACCESS TOKEN>`
fetch('https://public-api.expertfile.com/v2/spotlight/:corporation/:id', {
method: 'GET',
headers: {
'Content-Type': 'application/x-www-form-urlencoded',
'Authorization': `Bearer ${accessToken}`
}
})
.then(response => response.json())
.then(json => {
const { success, data } = json
if (success) {
const { spotlight, tags, seo } = data;
console.log('post', spotlight)
}
})
.catch(error => console.error(error));$accessToken = urlencode('<ACCESS TOKEN>');
$url = 'https://public-api.expertfile.com/v2/spotlight/:corporation/:id';
$ch = curl_init($url);
curl_setopt(
$ch,
CURLOPT_HTTPHEADER,
array('Content-Type: application/x-www-form-urlencoded', 'Authorization: Bearer ' . $accessToken)
);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
$json = json_decode($response);
if($json->success){
var_dump($json->data);
}
curl_close($ch);curl https://public-api.expertfile.com/v2/spotlight/:corporation/:id
-H "Content-Type: application/json" \
-H "Authorization: Bearer <ACCESS TOKEN>"Last updated
Was this helpful?