Adding Post Meta Data
The following API calls are required in order to add dynamic meta data including schema data to individual full post pages using post title and related data.
Last updated
Was this helpful?
Was this helpful?
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>"