I need help about Axios. I develop a SPA webapp on Laravel 6 (with package SPARK) and VueJS (version 2). On a Vue component, I want to retrieve datas from my b
Here is my code: let result = await axios({ method: 'post', url: 'https://hcaptcha.com/siteverify', params: {
I've encountered read:ECONNRESET error while I was trying to some data through axios post. A configuration for Axios is const http = require('http'); const h
I'm trying to get Vuejs and TinyMCE to work together. I use @tinymce/tinymce-vue package which is the vue integration for TinyMCE. I had followed all the instru
I am making a POST request to server to upload an image and sending formdata using axios in react-native. i am getting "Network Error". i also try fetch but n
I'm trying to display data from my API in a React App with Axios. I've created a simple method that connects to the REST API. import axios from 'axios'; cons
I'm using react with axios for accessing api from cryptocompare. Api has limit of 15 call per second. Now after 15 api call I'm getting error of "Rate limit e
I'm building a simple API to test a database. When I use get request everything works fine, but if I change to post I get "unprocessable entity" error: Here is
I'm trying to send a post request to my backend with axios, and my backend gets the values with no problem, but I want to set a state of (sent) to true when the
I've seen many posts about this error, but none of the solutions are working for me. I'm running Laravel with Passport which is working fine on my development s
I am facing an issue where Im trying to post data to my mongoDB from the frontend using React Hooks on React Native. The problem is that Im struggling to get th
I'm a newbie building an App that utilizes React Router to switch between 3 different components that each utilize Axios to fetch data from an API. I am trying
I want to make an ajax request using axios package on the parent component and pass the returned array to a child component so that it can iterate the array an
I have a Nuxt middleware file that fetches the session from an external api. This session is used to set things such as locale, so it's important that it is fet
I got a problem with my react native app. while accessing API, I get a response Skipped and status code 0. it's shown by using reactotron to log the api respons
I am trying to upload an image with react native front end and axios to my back end. This is how pic the image const pickImage = async () => { let result
I tried many solution from this task. I want testing axios instance api call without any libralies (jest-axios-mock, moaxios, msw, etc). I hope it's possible, b
What I want is, when I click SUBMIT button, it should post some data using axios.post const sb = async () => { axios.post('/tagSearch',{ qual: qual
I have a module that goes like this: import { Module } from '@nestjs/common' import { OtpService } from '@modules/auth/otp/otp.service' import { OtpResolver } f
I am trying to post two inputs with axios and I want to base64 encode them before I send them.