Quantcast
Viewing all articles
Browse latest Browse all 3201

faddoo on "[Plugin: Import any XML or CSV File to WordPress] How to fix the [Accept-Language] error while importing xml/json from url?"

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;
}

Viewing all articles
Browse latest Browse all 3201

Trending Articles