Questions tagged [third-party-cookies]

66 questions
0
votes
0 answers

Logout issue in firefox in blazor server app

I experience logout issue in Firefox browser. This is what happens: Click logout It logged out because I do not see member menu anymore. I click on login button. The login button opens the login form in an iframe on the screen. Rather then seeing…
0
votes
1 answer

Form post in an iframe with a different subdomain returns 400 error code

I have an iframe coming from different subdomain on my Razor page. When I post the form within the iframe, I see "400 Bad Request" error on the browser console. This error happens in the staging environment. However, I do not get this error on my…
Mchtbrt
  • 3
  • 2
0
votes
0 answers

Troubleshooting Rakuten Linksynergy affiliate links in mobile - purchased items not tracking

Rakuten is a very frustrating network as their customer service team is abysmal in helping to troubleshoot an affiliate publisher's implementation. I am hoping there is someone out there that can help us. We use Rakuten linksynergy links in our ios…
Astral
  • 1
  • 1
0
votes
0 answers

Stop subdomains inheriting third-party cookies

Probably a dumb question but the issue I'm encountering is this: TL;DR I have a subdomain that seems to inherit third-party cookies from its parent domain. eg. 'dev.test.com' is inheriting cookies from 'test.com' Now I understand that we can specify…
0
votes
0 answers

Can you set a 1st party cookie in an Iframe you control on another domain - SAAS

I run a plugin that allows merchants to improve and extend their ecommerce platforms. I have been told I can set 1st party cookies to track the interactions of users within my iframe. Please can someone explain how this would be achieved? My…
Dan
  • 377
  • 1
  • 4
  • 12
0
votes
0 answers

How to allow Third party cookies or configure trusted domains in a webview of an Electron app?

Some web services, eg Microsoft Teams, require allowing Third-party cookies or configuring trusted domains to perform a successful login, here is some documentation about…
Murz
  • 199
  • 2
  • 9
0
votes
0 answers

How can I retrieve and send CSRF token from Firebase server for user authentication?

Firebase server not creating csrfToken Hi everyone, I'm currently struggling with the firebase documentation. I want to provide instagram authentication on my platform. But as I understand, I got to secure my request with a csrftoken. I am currently…
0
votes
0 answers

Cross domain HttpOnly cookie not being set

I'm new to cookies and I'm having an issue to set HttpOnly cookie from server to web client. Here's my setup: Server is on domain: https://api.app.domain.com (express app), Web app in on domain: https://app.domain.com (react app with axios), The…
0
votes
0 answers

Iframe error: Failed to read 'localStorage' from 'Window': Access denied for this document

I'm using chrome, and I have a page with an iframe inside it, with a certain source code in it. Both use their own cookies or local storage, there's no cookie in common. Now, if i disable third party cookies, i got the following error: Uncaught…
0
votes
0 answers

Javascript: Cookie Permission external websites

I am dealing with an issue concerning cookies and hope someone can help me sorting out my brain I have a widget, which can be implemented in external websites via script-Tag. The widget is written in vanilla javascript. The widget can use…
0
votes
0 answers

Apple webkit updates impacting first party cookies impacting analytics

Analytics getting impacted with the new Apple webkit upgrade. I assume this could be a common issue across multiple analytics solutions. So wanted to understand if for any of the clients there was a solution proposed on the same. Apple Webkit…
0
votes
0 answers

Can't access window object of parent from my iframe

I have to build a small project in react and deploy it on s3 and used it in my CodeIgniter project using the iframe HTML tag. in react project, I have written a code to check the parent page URL but that script won't work and gives this…
0
votes
0 answers

Is it possible to know(using javascript) when a Thrid Party Cookie is being used?

I want to avoid some behavior from my web app when it is being used in an Iframe. The app use cookies for auth and I want to avoid authenticate the user automatically (using the cookies) when the app is inside an Iframe and the user has a new tab…
Javier Galarza
  • 28
  • 1
  • 2
  • 5
0
votes
2 answers

How can I found all secure and third party cookies on any website using python selenium

I was tried different approach to get secure and third party cookies. Pasting approach I was tried. With cookiesjar: import urllib import http.cookiejar url = "https://www.google.com" cookie_jar = http.cookiejar.CookieJar() url_opener =…
0
votes
0 answers

Storage Access API doesn't work with Safari?

I'm working on a Sharepoint SPFx project, which has an Iframe embedding content from our server. The issue is Safari blocking third-party cookies with Prevent Cross-site Tracking settings, which disallows iframe content to be shown on my Sharepoint…