I am creating a site for a friend, and the main page has a Google +1 button, a Twitter Follow button, and a Facebook Like button.
When I look under Cookies in Google Chrome's F12 menu, the list on the left has an assortment of Google, Twitter, and Facebook sites, as well as my own (currently localhost)
When I look under localhost's cookies, there are 15, and all of them list their domain as either .twitter.com or .google.com
When I deleted all cookies listed under localhost, I found myself logged out of my Google, Twitter, and Facebook account, even though I didn't delete any Facebook cookies! Why can I see their cookies under the localhost list, and is there a way to prevent this from happening? It'll be a bit annoying to distinguish my cookies from theirs. Thank you!
3rd Party Social Cookies on Site
139 Views Asked by Andrey At
1
There are 1 best solutions below
Related Questions in COOKIES
- Scrapy encountered http status <521>
- NodeJS not getting cookie
- How to accept cookies when using a webservice - Android?
- I Want to get the page count using cookie
- Superagent share session / cookie info with actual browser
- CookieContainer does not store cookies for internationalized domain names
- Setting a cookie in Wordpress functions.php - cant echo it using an other function
- JavaScript's document.cookie does not replace cookie in the subdomain
- How to assign cookie expiry date?
- How to read a JavaScript cookie?
- How can I redirect to an error page in my Play app?
- Python - Cookies & BeautifulSoup
- Express.js CookieParser does not get Angular.js $cookies
- Check Cookies AND Session in Same IF Statement
- How do I read the value of a cookie that comes with a cross domain image?
Related Questions in FACEBOOK-LIKE
- Facebook Sharing with angular JS variable replacement
- Testing if user has liked my page in angulike
- Why won't Facebook "Like" Button Scale on iOS Safari?
- Is that possible to answer to page rating using Facebook Graph API v2.3
- Weird Content of Facebook share/like button preview from angular app
- how to Publish my Facebook app?
- Facebook like count accuracy issue. Showing zero even if it's not
- Retrieve users Likes from facebook
- Retrieve all liked objects from Facebook Graph API
- Facebook page owners access to information
- minibrowser (or popup) on Android>5 and facebook like
- Facebook Like box aligned below Twitter/G+... but only on mobile?
- Facebook SDK, when user likes and comments the post we get any response to from which we posted this post?
- Facebook button renders differently on Firefox vs Chrome
- Facebook SDK Like event not working after ajax call
Related Questions in GOOGLE-PLUS
- Google plus API not return the Email address
- Google Plus login demo keeps failing connection
- Sign Out From Google plus Account Not Working in android, Showing Null Pointer Exception
- Cordova app check if user signed in before closing my app?
- Is it possible to use Google Cloud Endpoints built in authentication with Google+ Domains API?
- Fetch friends email from Google Account on iOS
- Not getting friends list in google plus android
- Social Sharing Predefined Custom Messages
- Google+ media sharing throws exception "No Activity found to handle the intent"
- In iOS how we come back to initial view after google+ sharing?
- Google Hangouts - controlling other participants video
- google+ api login not returning email
- Share in google using GTLServicePlus with GIDAuthentication
- How to share a track/any content from my radio/music application to google+?
- Error when trying to get share count from Google+
Related Questions in TWITTER-FOLLOW
- Rails Gem for twitter follow like functions between users
- Like button like Follow (Twitter) in Ruby on Rails
- how to use twitter api in my android application to implement follow button only
- How to track twitter follow us & facebook like us?
- Redis Twitter-like Follow/Unfollow Design Pattern
- Follow actions for all instances of object
- Media queries issue with Twitter button
- Twitter API not returning all followers
- mgtwitterengine get friends/ids and followers/ids
- iPhone follow a user on twitter programmatically
- 3rd Party Social Cookies on Site
- How to get twitter followers list with follower count greater than a value?
- create a pairs of users ids with python
- Stream tweets which mention @friendname
- How do i implement a follow and unfollow system with php and Mysqli just like Twitter and Facebook?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Cookies are domain specific and cannot be read by sites of other domains. My guess is that the delete went beyond just the localhost scope. I would try using the cookie manager from within the Chrome settings rather than through the Developer Tools console:
From within here, you can examine other cookies for other domains and test your script to try to retrieve those. You won't be able to unless you've uncovered a serious browser bug, which is unlikely.