Zoeken in Support

Vermijd ondersteuningsscams. We zullen u nooit vragen een telefoonnummer te bellen, er een sms naar te sturen of persoonlijke gegevens te delen. Meld verdachte activiteit met de optie ‘Misbruik melden’.

Learn More

Deze conversatie is gearchiveerd. Stel een nieuwe vraag als u hulp nodig hebt.

document.cookie doesn't work for https://httpbin.org/cookies site in Firefox

  • 4 antwoorden
  • 1 heeft dit probleem
  • 12 weergaven
  • Laatste antwoord van TinyFox

more options

I am using `Firefox 73.0.1 (64-bit)` Windows7.

`document.cookie = "name=value"` can't add new cookie in Firefox for this site `https://httpbin.org/cookies` but Chrome does.

I tried with latest Firefox installation with MacOS, it neither add a new cookie.

Could you tell me why? Thanks

I am using `Firefox 73.0.1 (64-bit)` Windows7. `document.cookie = "name=value"` can't add new cookie in Firefox for this site `https://httpbin.org/cookies` but Chrome does. I tried with latest Firefox installation with MacOS, it neither add a new cookie. Could you tell me why? Thanks

Bewerkt door TinyFox op

Gekozen oplossing

The https://httpbin.org/cookies file appears to be a JSON file containing a cookies object. Firefox renders this page in a viewer rather than in raw text form. You may need to disable the viewer first before testing:

(1) In a new tab, type or paste about:config in the address bar and press Enter/Return. Click the button accepting the risk.

(2) In the search box above the list, type or paste json and pause while the list is filtered

(3) Double-click the devtools.jsonview.enabled preference to switch the value from true to false

Dit antwoord in context lezen 👍 1

Alle antwoorden (4)

more options

Hi TinyFox, if you check the Web Console in the developer tools for that tab, does it mention any errors, warnings, or policy restrictions when the script in the page is run?

Ref. https://developer.mozilla.org/docs/Tools/Web_Console

more options

jscher2000 said

Hi TinyFox, if you check the Web Console in the developer tools for that tab, does it mention any errors, warnings, or policy restrictions when the script in the page is run? Ref. https://developer.mozilla.org/docs/Tools/Web_Console

It only has this on the Console tab. Is it related to that problem I mentioned? I don't think so.

Content Security Policy: The page’s settings blocked the loading of a resource at https://httpbin.org/favicon.ico (“default-src”).

You can try with your browser, can you add cookie ?

more options

Gekozen oplossing

The https://httpbin.org/cookies file appears to be a JSON file containing a cookies object. Firefox renders this page in a viewer rather than in raw text form. You may need to disable the viewer first before testing:

(1) In a new tab, type or paste about:config in the address bar and press Enter/Return. Click the button accepting the risk.

(2) In the search box above the list, type or paste json and pause while the list is filtered

(3) Double-click the devtools.jsonview.enabled preference to switch the value from true to false

more options

jscher2000 said

The https://httpbin.org/cookies file appears to be a JSON file containing a cookies object. Firefox renders this page in a viewer rather than in raw text form. You may need to disable the viewer first before testing: (1) In a new tab, type or paste about:config in the address bar and press Enter/Return. Click the button accepting the risk. (2) In the search box above the list, type or paste json and pause while the list is filtered (3) Double-click the devtools.jsonview.enabled preference to switch the value from true to false

You are genius :P