Nothing with "get_file_curl.php" ?
Maybe accepting header from there while requesting download from the URL?
I have a CURL code, but i dont know how to change the URL to the import URL using from the plugin import settings (wp-admin)
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => "http://api.arbetsformedlingen.se/af/v0/platsannonser/matchning?lanid=6&antalrader=5",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => array(
"accept: application/json",
"accept-encoding: UTF-8",
"accept-language: sv",
"cache-control: no-cache",
"from: info@jobbuddy.se",
),
));
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}