79241081

Date: 2024-12-01 07:18:20
Score: 1
Natty:
Report link

It's true that VSCode Developer Tool cannot inspect extension network because it's running under separate process called the Extension Host. You can take a look here but it seems complicated to setup https://stackoverflow.com/a/67099176/3789481

A simpler approach is to use Fiddler Classic as a forward proxy. By doing this, all API requests from VSCode will go through Fiddler, allowing you to inspect them, including HTTPS requests through TLS Inspection.

Fiddler setup:

enter image description here

VSCode setup: enter image description here

After that, you can inspect for any *.githubcopilot.com directly, e.g. inline suggestion

enter image description here

VSCode will send prompt and get response back as Content-Type: text/event-stream enter image description here

You can also inspect GHCP Chat with that same endpoint

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
Posted by: Alfred Luu