[Bug]: cannot use REST client vscode extension
See original GitHub issueIs there an existing issue for this?
- I have searched the existing issues
OS/Web Information
- Web Browser: Chrome
- Local OS: windows
- Remote OS: centos
- Remote Architecture: amd64
code-server --version
: 4.4.0
REST Client extension(https://marketplace.visualstudio.com/items?itemName=humao.rest-client), the side window can pop after send a request but with no reply message.
Steps to Reproduce
- open code-server
- install extension, REST Client
- run command, send request. GET https://www.google.com
Expected
right side windows pop with reply message
Actual
right side windows pop with no message
Logs
No response
Screenshot/Video
Does this issue happen in VS Code or GitHub Codespaces?
- I cannot reproduce this in VS Code.
- I cannot reproduce this in GitHub Codespaces.
Are you accessing code-server over HTTPS?
- I am using HTTPS.
Notes
No response
Issue Analytics
- State:
- Created a year ago
- Comments:9 (5 by maintainers)
Top Results From Across the Web
VSCode Extension REST calls not working - Stack Overflow
I've tested the API via Postman and it works fine. I can actually run the script from a Command Prompt window with Node...
Read more >Remote Development FAQ - Visual Studio Code
Remote Development FAQ. This article covers frequently asked questions for each of the Visual Studio Code Remote Development extensions.
Read more >Huachao/vscode-restclient - Gitter
Hello, I'm running into that error "(command 'rest-client.request' not found)" again. I did the usual uninstall/reinstall and manual install and not able to ......
Read more >REST Client: Using Environment Variables and excluding ...
Useful links & resources: REST Client extension for Visual Studio Code. Download.
Read more >Calling REST APIs From the IDE - Microsoft Tech Community
To do this we'll use the REST Client extension for Visual Studio Code. Get Started. Click here to Install the extension. Make our...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Hum interesting…
I have created a new “https” docker image with this Docker file:
FROM codercom/code-server:latest COPY config.yaml /home/coder/.config/code-server/config.yaml ENTRYPOINT [“/usr/bin/entrypoint.sh”, “.”]
and this config file :
bind-addr: 0.0.0.0:443 auth: password password: test cert: true
docker run -d -p 0.0.0.0:443:443 --rm adeleporte/httpscoder
And this time, it does work with any address/fqdn…
I will re-check with my previous configuration. Thanks!
Well that is certainly good news to my Monday! Sounds good!