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 answers
Related Questions in COOKIES
- Loading Google Analytics after the user consents to cookie usage
- Express session is not seened in server code
- Cookie doesn't send different domain django and react
- Storing settings in cookies
- Cant handle Session's cookie when Safari/iOS
- Create new cookie with host only set to false in chrome extension
- 3rd Party cookies error on deployment server
- Access Cookies in TRPC fetch handler
- My project uses cookiebot but when I accept cookies at the start of website it deletes my localstorage data
- Postman receiving cookie but my browser isn't receiving it when I try
- Nextjs: Ability to fetch HTTPS-ONLY cookies using server actions, is there a vulnerability?
- Cant send cookie at res when user using Safari/iOS
- Initialize a singleton from cookies for a ASP.NET Core Razor project
- JS doesn't put cookies after domain change for localhost
- Unable to set cookies from hosted backend (https://dev.abcd.com) to localhost of frontend
Related Questions in FACEBOOK-LIKE
- How is facebook setting its cross-domain datr cookie from an iframe?
- Facebook JS SDK - The loading of “https://www.facebook.com/plugins/like/connect” in a frame is denied by “X-Frame-Options“ directive set to “deny“
- Facebook Like Button (Social Plugins) No Longer Work?
- Website Facebook Like button disappears after clicking
- Facebook like button not functioning
- How to find facebook post id
- Facebook Page Like and Show Page
- Facebook like button doesn't work with Facebook page
- Error: Problems validating fields in app.json (SDK 48)
- Facebook like button not showing with Edge and with any IE version
- How to remove facebook like button social text?
- integrity-error django :violates not-null constraint
- Facebook debugger not working with Angular NG SERVE in DEV environment
- "Sender action failed" When reacting to facebook message
- Like button with counter on wordpress post
Related Questions in GOOGLE-PLUS
- GooglePlus login for android implements on ionic error
- Ionic Angular GooglePlus : Invalid provider for the NgModule
- cordova-plugin-inappbrowser for ios Plugin doesn't support this project's cordova-ios version. cordova-ios: 5.1.1, failed version requirement: >=6.0.0
- Getting "Request had insufficient authentication scopes." 403 error code while importing contact from Gmail using ionic 5 & Angular 11
- Having problem with getting credentials for Google+ API
- Authentication with google plus on Ionic
- How to use google plus into a vuejs ionic project
- What are the WEB_APPLICATION_CLIENT_ID and GOOGLE_IOS_CLIENT_ID in the cordova gigya and cordova googleplus plugins
- Failed to install 'corodova-plugin-googleplus'
- Pass parameter to Identity Provider on Azure Ad B2C
- Not able to get email information from UserProfile info in SSO using Google with Oauth2 in Spring Application
- Unable to pass Email as context using Google Auth
- How to logout from google and facebook from same button in a website?
- Firebase FCM with google plus cordova plugin conflict - IOS
- how to keep google login session alive till user manually logout in ionic 4 + angular mobile app?
Related Questions in TWITTER-FOLLOW
- Why cant I follow using twitter api free version?
- How to get twitter followers list with follower count greater than a value?
- Have twitter bot retrieve username upon new follow action javascript
- create a pairs of users ids with python
- How to implement followers/following using ManyToManyField in Django?
- Hide the word "followers" in Twitter's follow button
- Stacked in a loop creating friendship with tweepy
- Auto-following a Twitter account at Omniauth-Twitter signup with Rails5
- How to append facebook like button in particular div
- How do i implement a follow and unfollow system with php and Mysqli just like Twitter and Facebook?
- How can I avoid Twitter API rate limits when returning a user's followers?
- Twitter stream API request - don't follow certain users
- send follow request to protected user in twitter
- Imacros problems in twitter
- How to get G+ response for G+ follow button
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?
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)
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.