Json Mark
Json Mark

Reputation: 1

How to get the cookie value using curl

Image

Is it possible to get the crumb value using curl in php? the crumb serves as the cookie in the website

Upvotes: 0

Views: 201

Answers (1)

Markus Zeller
Markus Zeller

Reputation: 9135

Just ask curl.

$ch = curl_init('https://yourhost.com/image.png');
curl_exec($ch);
$info = curl_info($ch, CURLINFO_COOKIELIST);

$info contains now an array with all known cookies.

As you did not provide enough info, I can only present an example.

Upvotes: 1

Related Questions