Is that curl issue?
Reference: http://php.net/manual/en/book.curl.php
However, can give a try with- https://github.com/Laurentvw/scrapher
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
Hello Guys i am using https://github.com/FriendsOfPHP/Goutte to scrape urls like facebook in laravel 5.3 but my trails are failing i had tried both http and https urls http gives a empty result and htttps gives curl 60 error can anyone help me, i have the following code in my routes.
use Illuminate\Http\Request;
use Goutte\Client;
$client = new Client();
$url = $request->url;
$crawler = $client->request('GET', $url);
return response()->json($crawler);
Thanks for your suggestion but i got the solution i have tried https://github.com/oscarotero/Embed library for that
Please or to participate in this conversation.