1

Many days ago I change Google Chrome Network tab configuration to show Methods.

Everythings were okay if my origin ajax request URL was not exactly like destination ajax request URL the browser (Google Chrome) send an OPTIONS request to be sure it is secure to send the main request.

So in the Network tab, we can see OPTIONS call and if its response became 200 the browser send the main request, I expect just like below:

enter image description here

But in my Google Chrome, it sent the OPTIONS calls and after getting 200 send the main call but doesn't show OPTIONS call in network tab.

My google chrome (I see below):

enter image description here

How I can fix my Google chrome to see OPTIONS calls in the network tab?

  • 2
    This is apparently expected behaviour according to a Google chrome update. I noticed the same thing but on FireFox they were there. More information here: https://stackoverflow.com/questions/57410051/chrome-not-showing-options-requests-in-network-tab – AliF50 Aug 26 '19 at 15:49

1 Answers1

2

Actually, the right answer is in this link.

If anyone wanna see OPTIONS call should:

  1. open a new tab in Google Chrome
  2. type this: chrome://flags/#out-of-blink-cors
  3. Disable the Out of blink CORS
  4. Restart Google Chrome
  5. Now you can see OPTIONS call