I am creating a module in which I use third party Js. That JS create a cookie in browser. At backend I want to read that cookie by the help of prestashop cookie class (Context::getContext()->cookie / $this->context->cookie
) but unable to find that cookie value, If I use php default $_COOKIE
it work fine.
Ex: My cookie key is xyz, and value is 123456abc.
When I use print_r($_COOKIE)
It print [xyz]= "123456abc"
But when I use prestashop
Cookie It doesn't print anything.