Skip to content
Advertisement

Tag: request

Unable to retrieve specific elements from JSON api

Implement a function fetchDataForUser, which fetches data from a remote JSON api and then returns a part of it. Since this is a network call, it will need to be an asynchronous function and return the data via a callback. JSON Data: https://gist.githubusercontent.com/kvirani/f7d65576cc1331da1c98d5cad4f82a69/raw/4baad7566f0b6cd6f651c5d3558a015e226428b5/data.json The callback should be called with two arguments: error: if request comes back with an err, pass

Translating Curl Request with Form Data to Axios

I’m trying to mimic the following request using axios: More information: https://developer.capitalone.com/documentation/o-auth I came up with the following code: This keeps timing out and not giving me any response, which leads me to believe my request is malformed. Am I doing something wrong in trying to create this request with form data using axios? Answer Paste your curl command into

The script is not working in Mozilla Firefox

I need to send some data to the server when the page is closed or refreshed. Therefore, I created a simple script that can handle my needs. The problem is that this script is not working in Mozilla firefox. The script is working in many other browsers like chrome, chromium, brave, opera, falkon, epiphany, qutebroser, Midori, safari, edge. The problem

React-Query useQuery is caching response

I have following code This function should be called when I visit my main page, but when returning to this route from another page this request is not triggered and I don’t get fresh data. What I want is this query to be called every time like useEffect Answer data from the cache is always returned if there is data

what is this request response format?

i’m trying to scrape a website but the thing is that i get this as a response (most likely javascript ? ). I am using request in order to send requests to the website. Is it possible to convert it to a parsable format ? I thought of using jQuery to send request an accept a certain response format.But as

Sending POST request with Fetch after closing the browser with ‘beforeunload’ / ‘unload’ eventlistener is not working

for the life of me I can’t figure out what is happening. I’ve been spending all day searching for the answer but can’t find it anywhere. I’m practicing with writing a function that emails an abandoned form to me. This is the index.js file I run for the local host that hosts the form The function that the request is

TypeError: fs.createReadStream is not a function

I prefer to use promises rather than callbacks so I’ve used util.promisify. I’ve received TypeError: fs.createReadStream is not a function at const attachments = {attachment: fs.createReadStream(‘kitty.png’)}; line. How can I solve that? Answer fs.promises is not a superset of fs. While it replaces some methods on fs with methods of the same core name that return a promise, it does

MailChimp: Why is PUT method with javascript returning “Use PUT to insert or update list members”

I’m trying to update one of my subscriber’s status using mailchimp API 3.0, Meteor and javascript. Here is my js code I’m using: with and But I always have the same output: I20181204-18:42:12.714(8)? title: ‘Member Exists’, I20181204-18:42:12.714(8)? status: 400, I20181204-18:42:12.714(8)? detail: ‘(user mail adress) is already a list member. Use PUT to insert or update list members.’ But I am

Advertisement