Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

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

  • 4 replies
  • 1 has this problem
  • 14 views
  • Last reply by 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

Modified by TinyFox

Chosen solution

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

Read this answer in context 👍 1

All Replies (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

Chosen Solution

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