-
Hi, I got this fetchData method in my component:
```
fetchData(params, cb) {
superagent
.get(`${API_URL}/users/` + params.username)
.accept('json')
…
-
### ⚠️ Please check that this feature request hasn't been suggested before.
- [X] I searched previous [Ideas in Discussions](https://github.com/homanp/superagent/discussions/categories/ideas) didn't …
-
The way I see it it's not really needed, and just bloats the consumer's bundle size. Using XMLHttpRequest should be sufficient
-
It's okay to write these two lines of code
``` javascript
var config = require('./superagent-mock-config');
require('superagent-mock')(request, config);
```
in test files (preprocessor, beforeEach…
-
## Summary
cloudflare worker is a popular serverless service. I am trying to integrate it with greenfield, but when I call `delegateUploadObject` to upload a file, it prompts
```
{
code: -1,
…
-
https://gist.github.com/formula1/582b2acb8c1e6513fe1a#file-readme-md
So after wasting most of yesterday believeing this was busboy's fault then I believed it was superagent's fault and then I think i…
-
superagent-proxy v3 cannot be used with proxy-agent v6 because of breaking changes in the exports, at least.
https://github.com/TooTallNate/superagent-proxy/blob/ce624a1d66c0ae5fc9cec1fc48904d389…
-
A test failed on a tracked branch
```
Error: expected 200 "OK", got 401 "Unauthorized"
at Test._assertStatus (/opt/local-ssd/buildkite/builds/kb-n2-4-c3b96ff0bbb5ca35/elastic/kibana-hourly/kibana…
-
I'm trying to do the following
1. Get a fixture to return a server error (500)
2. Use retry(3) on the superagent
3. See that the fixture is called 3 times, and the get request ultimately fails.
…
-
I want to reuse `gorequest.SuperAgent` in my program, so I new a `req`, then I always reuse this.This does work at most time,
But when I have multiple `goroutine` in linux, this just got `nil pointe…