Questions tagged [third-party-cookies]

66 questions
1
vote
1 answer

Intent Data - How exactly are traceable urls used to track interest in b2b topics?

I've been doing some research on intent data and I have some technical questions, especially about how two businesses might be collecting "contact level" i.e. personally identified web traffic details without using third-party cookies. Some quick…
1
vote
0 answers

Is First-Party Cookie also going to be abandoned in the future?

I see news that Google Chrome will drop support for Third-Party Cookie in 2023 and Safari already did. However, I don’t see any information about how they will deal with First-Party Cookie. Do you think First-Party Cookie will also be abandoned in…
shinyatk
  • 855
  • 11
  • 28
1
vote
1 answer

safari storage access api not granting access in iframe

Yes as far I have seen the way to grant request access to storage api is to ask for user gesture in iframe, but even I am unable to get the pop-up as well as when initating user gesture and calling the requeststorageaccess() fn through the button…
1
vote
0 answers

Third party website messes up my site's cookies

When a user clicks a button on my site, a new window is opened to a third party site where the user browses items. After clicking an item, the new window is redirected back to my site with data about the item. At this point (after the final redirect…
bloodleh
  • 493
  • 8
  • 28
1
vote
0 answers

Chrome banning Third party cookies and Cross Domain Authentication

I recently came across that third party cookies will be banned in most browsers from 2022. (Most notably, chrome) My current setup involves a React front-end server (on domain A) and an express-passport backend server using cookies (transferred…
1
vote
1 answer

Third-Party Cookies in Chrome

On the latest version of Chrome (Version 90.0.4430.85 on MacOS), I found that third-party cookies are disabled even though in my browser settings I checked "Allow all Cookies". I also tried adding the site to "Sites that can always use cookies" and…
Parzival
  • 2,051
  • 4
  • 14
  • 32
1
vote
1 answer

Third party javascript | Set Cookie not working

I am developing a javascript embeddable chat widget that can be deployed on the customer's site. I am trying to make API calls (using XMLhttp configured withCredentials true) from my Iframe widget to the backend to get some data and set cookies…
1
vote
1 answer

Flask-session not working in iphones because third-party cookies are blocked

My problem is that I have a web page with 2 domains, one for backend and another one for frontend, my backend is in flask, and i use flask-session module to create sessions, it works perfectly in almost everywhere but not in iphone, in mac works but…
1
vote
0 answers

How to use Google API without users having to allow third party cookies on the browser?

Recent versions of Chrome and other browsers are blocking third party cookies by default and users can allow those cookies by, for example, clicking on an eye icon in Chrome and selecting to allow third party cookies. I have a web application that…
user5507535
  • 1,580
  • 1
  • 18
  • 39
1
vote
4 answers

Express-Session not working in production/deployment

Express-Session is working in development environment, as it sets the "connect.sid" cookie in my browser. However, in production it's not storing the cookie, and instead of using the same session - it creates a new one every time. I believe that the…
Hugo
  • 31
  • 1
  • 3
1
vote
1 answer

My telegram website log in widget stopped working. How to set third-party cookie for the recently updated browsers?

I integrated telegram login widget for my website several months ago. It worked like a charm. But it stopped working today. enter image description here IMO, the reason is that my Chrome browser has been updated recently, and banned third-party…
Jin Long
  • 31
  • 1
  • 7
1
vote
1 answer

How to ask users to allow third party cookies in javascript

I added some advertise sections on react webpage. Of course it works well on Chrome browser. But it didn't work on safari (Macbook + iPhone). I noticed that 3rd party cookies were blocked by default on Mac. I want to write script to ask users to…
Julian
  • 1,592
  • 1
  • 13
  • 33
1
vote
0 answers

How can my widget maintain state without use of cookies?

Our widgets rely on cookies: example.com site embeds mywebsite.com in an iframe and customers can use our widget. With browsers starting to block third party cookies more and more our widget breaks out in to a new page which isn't great and I…
Abs
  • 56,052
  • 101
  • 275
  • 409
1
vote
0 answers

Accessing Cookie From A Sub Domain In Firefox/Safari Fails

It looks like this question has been asked many time on SO but my findings are contradicting with what is explained elsewhere (or may be I am missing something). PROBLEM Firefox and Safari no longer support third party cookies, which means…
planet_hunter
  • 3,866
  • 1
  • 26
  • 39
0
votes
0 answers

How to to set partition key for third-party cookies in c#?

How to bypass third party cookies in C#? Now cookies are set with Response.Cookies.Append and cookieOptions like this: Response.Cookies.Append("SomeCookie", "SomeValue", cookieOptions); There is an instructions how to work around the third-party…
Teriel
  • 11
  • 4