How can i call external REST API from Magento 2.2.5
Please tell me. https://hardwoodfloorrefinishingin.com/canada/calgary/
Thanks
You can call any external API using a curl request.
$ch = curl_init('YOUR_EXTERNAL_API_URL'); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_HTTPHEADER, ['Authorization: Bearer YOUR_API_KEY']); $response = curl_exec($ch); curl_close($ch); $data = json_decode($response, true);
Replace YOUR_EXTERNAL_API_URL with the API URL and YOUR_API_KEY with the actual API key.