Questions tagged [thunderclient]

Rest API Client for VS Code

Thunder Client for VS Code is an extension for that facilitates to send http request to a webservice and handle the response. It is similar to .

43 questions
0
votes
1 answer

Thunder Client error, but Postman works ok

Why does In Postman client work , but not ThunderClient ? In Postman client , I can GET to http://localhost:5173/api/posts , and see body "message":"Hello" , and status 200 But when I try the same operation using Thunder client extension in VS Code…
petercli
  • 185
  • 2
  • 12
0
votes
0 answers

Cannot GET / error using thunderclient to send request

I'm having trouble with my server routes. is there any problem with my routes? or a problem with the code? I have checked all the possible question answers. I'm having trouble with my server routes. used thunderclient to send request when I…
0
votes
0 answers

Query Notion Database failed with shared integration

I been working on a project in which I am trying to connect the Notion Database to my iOS app. I am having issues with sending post request to the database with shared integration token and see if I can get the responses. I keep getting 404 not…
dezzzy
  • 1
0
votes
0 answers

What's the Postman(Thunder-Client) url for a local MongoDB API call?

I have MongoDB installed on my machine, a database, a collection in the database, and a document in the collection. I have a mongodb instance running from running the mongosh command in my terminal. After running mongosh I get 'Connecting to:' a…
0
votes
0 answers

ThunderClient with GitHub Gist API: Request is Failing

This question is specific to use of ThunderClient; I've looked at numerous questions and answers related to the Github API with cURL etc; that's not my use case. I have done what I believe should replicate the requirements in ThunderClient, but I'm…
Dan Donaldson
  • 1,061
  • 1
  • 8
  • 21
0
votes
1 answer

Thunder Client find object in array based of object.attribute equals value

In Selecting/filtering with JSON Query the OP reported a similar problem to mine. In my case i have this json response { "status": "ok", "featuresSelected": [ { "feature": "x1", "price": "1.23" }, { "feature": "u7", "price": "4.56"}, …
surfmuggle
  • 5,527
  • 7
  • 48
  • 77
0
votes
0 answers

internal server error 500 , when m making post request for registering user , dont know whats wrong

*** my index js *** const express = require("express"); const app = express(); const dotenv = require("dotenv"); const mongoose = require("mongoose"); const authRoute = require("./routes/auth"); const userRoute = require("./routes/users"); const…
krishna
  • 53
  • 5
0
votes
1 answer

Thunder Client math operations

Thunder Client doesn't seem to support math operations in its tests. Is there any way I could make it calculate a multiplication like this?
pușigreen
  • 91
  • 8
0
votes
1 answer

data is not saving in mongodb compass .inside thunder client body i have passed a json according to model schema . but data is not saving in mongo db

data is not saving in mongodb compass . i have used node js to connect to mongodb . a router is also there . model schema is also present .inside thunder client body i have passed a json according to model schema . app listen is working fine and…
Rahul Mohanty
  • 342
  • 3
  • 9
0
votes
2 answers

How to change the default URL of thunderclient

Whenever we make a New Request, the default URL in the URL box is "https://www.thunderclient.com/welcome" How can we change this with our own URL?
0
votes
4 answers

thunder client not show in vscode

I have installed the thunder client extension. Thunder client should show like this in side bar. But in My VS Code this is missing, How can I solve it?
shahadat3669
  • 75
  • 2
  • 6
0
votes
0 answers

Laravel HTTP Client says false when I check password but no others clients

I have this weird problem. and I want a "yes" in all clients. I am using laravel 8 in client and API using laragon, with php 8.1.7 with apache 2.4.54 namespace App\Http\Controllers\Api\Auth; use App\Http\Controllers\Controller; use…
-1
votes
0 answers

It is showing processing on sending a request to my express app

I am getting the issue as shown below in the image whatever I do there is no response. It was working fine until yesterday. I even created a new file to check if my previous file had any error. const express = require('express') const app =…
1 2
3