All Questions
345 questions
0
votes
1
answer
38
views
Querying only the price with Axios and Alphavantage.co in Nuxt
So I want to query the current price of a Stocks with alphvantage. But Alphavantage gets me this back:
{
"Global Quote": {
"01. symbol": "IBM",
"...
0
votes
1
answer
913
views
Axios vulnerability detected when installing @nuxtjs/auth-next
I have a nuxt project and I was trying to install nuxt auth but every time I install this package, it appears this Axios Cross-Site Request Forgery Vulnerability. This is my package.json file:
{
&...
0
votes
0
answers
97
views
NuxtJS asyncData ui not updating by the responses
I am new to NuxtJS.I am working on a sample project. I have a route in my project called pages-->post-->_id.vue . I am trying to run a sample code just to test fetching with API with asyncData....
-1
votes
1
answer
95
views
Api Sheets Problem Nuxt 2 when i try CopyTo
Problem
Hi guys.
when I try to send this request I don't know why it doesn't work, I have Oauth2.0 I happen to use Nuxt2 and Nuxt/auth to make a static page. That's why axios sends this request but ...
0
votes
0
answers
284
views
Nuxtjs axios issue in SSR mode
In my Nuxtjs application, I am facing issue "Cannot set headers after they are sent to the client" when API request is made using axios. I am using axios from nuxt: @nuxtjs/axios. The issue ...
0
votes
1
answer
605
views
How to use @nuxtjs/axios with @nuxtjs/composition-api and nuxt 2
I want to use https://www.npmjs.com/package/@nuxtjs/axios with nuxt 2.17 and the plugin https://composition-api.nuxtjs.org/ (@nuxtjs/composition-api).
Now the usage of this.$axios does not work of ...
1
vote
0
answers
501
views
Nuxt Axios Error on build Request failed with status code 429
When building my Nuxt.js project I get the following error
12:16:11 PM: [error] Request failed with status code 429
12:16:11 PM: at createError (node_modules/axios/lib/core/createError.js:16:15)
12:...
-2
votes
1
answer
115
views
I can't send request to api
I have Nuxt JS project. I can't make a request to the Node js project I run on localhost. It gives Cors error in Network section. I can send requests with Postman, but not from the project. I added ...
0
votes
0
answers
77
views
Axios runs a query automatically to my root directory
I am doing a project in Vue 2 with Nuxt and Every time you run a query with Axios, apart from running an additional query to the razis directory, I don't know how to avoid it, I'm consulting an Api ...
0
votes
1
answer
636
views
How to access $axios in composition API without using useContext
I am trying to access $axios in Vue composition API without using useContext() because the current app is not a Nuxt app and is like a library that either can be used inside a Nuxt app or Vue app. So ...
0
votes
1
answer
2k
views
Not connect to credential provider sidebase nuxt auth
I am using sidebase nuxt auth for my application. I am trying to connect to my database via axios. This code works, i get no error from database but not through sidebase auth. The result returns true, ...
0
votes
0
answers
161
views
Unable to make POST request HTTPS server via axios in NuxtJS
When in NuxtJS, I am trying to make a POST request to a HTTPS server via axios and I have it deployed via Vercel. It is not getting the content from the POST request.
Current Code:
<script>
...
0
votes
2
answers
79
views
V-for Loop not displaying data when I Query NewsAPI using Vuex and Nuxt JS
I started this project recently in Nuxt JS, all I wanted to do is get data from NewsAPI.org using Axios and Vuex which I did, showing the code below.
news.js
const endPoint = "https://newsapi....
0
votes
0
answers
652
views
I am trying to fix the Nuxt Js Mixed content error, unable to solve
I am getting bellow error
Mixed Content: The page at 'https://example.com/' was loaded over HTTPS, but requested an insecure XMLHttpRequest endpoint 'http://x.xxx.1x.xxx:x000/api/v1/users/slots?type=...
0
votes
0
answers
74
views
how to for loop data from localStorage nuxtjs
this my code previously
<ul>
<li v-for="item in data.data">{{ item.name }}</li>
</ul>
export default {
layout: 'main',
async asyncData({ $axios }) {
const ...