cURL PHP : Note : Cookie is disabled in your browser. Please enable the cookie to continue.

cURL PHP : Note : Cookie is disabled in your browser. Please enable the cookie to continue.

So I'm trying to get the *grant token* in my uri with this cURL REQUEST.
The result I get is this :
Note : Cookie is disabled in your browser. Please enable the cookie to continue.
I know for a fact that my cookie are enabled. No doubt about it.
Can someone tell me whats wrong

$uri = // My URI
$scope = // My scope
$clientid = // My client ID
$accestype =  //My access type

$ch = curl_init();
$url = " https://accounts.zoho.com/oauth/v2/auth?scope=" . $scope . "&client_id=" . $clientid . "&response_type=code&access_type=" . $accestype . "&redirect_uri=" . $uri . "";

curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);

$response = curl_exec($ch);
curl_close($ch);