搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

Learn More

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

  • 4 回覆
  • 1 有這個問題
  • 14 次檢視
  • 最近回覆由 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

由 TinyFox 於 修改

被選擇的解決方法

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

從原來的回覆中察看解決方案 👍 1

所有回覆 (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

選擇的解決方法

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