Reputation: 10074
I understand you cant read another sites cookies from a user, ie you cant read a users facebook cookie when they visit your site, but are you able to see if a facebook cookie is set / is present
ie. something like
if (//facebook cookie is set){
echo "We see you use Facebook, would you like to login with it ?";
};`
Upvotes: 0
Views: 62
Reputation: 943561
Absolutely not. Browsers are not supposed to leak any information about what they have done on other sites.
Upvotes: 2