CORS preflight
curl --request OPTIONS \
--url https://api.app.hrizn.io/v1/public/share/testimonialimport requests
url = "https://api.app.hrizn.io/v1/public/share/testimonial"
response = requests.options(url)
print(response.text)const options = {method: 'OPTIONS'};
fetch('https://api.app.hrizn.io/v1/public/share/testimonial', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const options = {method: 'OPTIONS'};
fetch('https://api.app.hrizn.io/v1/public/share/testimonial', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.app.hrizn.io/v1/public/share/testimonial",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "OPTIONS",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}CORS preflight
OPTIONS
/
share
/
testimonial
CORS preflight
curl --request OPTIONS \
--url https://api.app.hrizn.io/v1/public/share/testimonialimport requests
url = "https://api.app.hrizn.io/v1/public/share/testimonial"
response = requests.options(url)
print(response.text)const options = {method: 'OPTIONS'};
fetch('https://api.app.hrizn.io/v1/public/share/testimonial', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const options = {method: 'OPTIONS'};
fetch('https://api.app.hrizn.io/v1/public/share/testimonial', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.app.hrizn.io/v1/public/share/testimonial",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "OPTIONS",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}Response
204
Preflight accepted; ACAO echoed only for the Hrizn app origin
Last modified on September 7, 2026
