Questions tagged [rapidapi]

155 questions
0
votes
1 answer

use .env file in hosting on netlify

i am using my github repository to constant update a site i made using shazam core api, the api key is stored in an env file(locally) which is safe but is not uploaded on github due to .gitignore security.but the hosting will not work without the…
0
votes
1 answer

How to fix CORS issue When call Instagram Rapid API

I want to show Instagram photos by Instagram API with the PHP-curl method which provides by Rapid API. I can retrieve all data but I can't show images because CORS issue. show an error message in the console and didn't img. GET…
Monzur Alam
  • 512
  • 4
  • 11
0
votes
0 answers

with Rapid API 429 403

I used the RAPID API and it got blocked due to request overload with error 429, I tried to change KEY and it gives me error 403 I also tried to have a member of the team run the project with his own KEY and it still didn't work, what do I need to do…
0
votes
1 answer

React repeatedly requests API data

I'm requesting API data through axios using RapidAPI's Apis. I followed all the documentations provided in RapidAPI with a relatively simple code. However, when I log the values, it keeps repeatedly requesting data over and over and this in turn…
rt10
  • 25
  • 4
0
votes
0 answers

how to solve 403 forbidden error while calling data from RapidAPI using redux

enter image description here i have used the below API keys and value of Shazamcore API enter image description here Can anyone help me?
0
votes
1 answer

I get this error "_TypeError (type '_InternalLinkedHashMap' is not a subtype of type 'Iterable')" from api array call

I'm working on a app that you can read quran and bible from it and I'm pulling quran surahs and bible books from firebase and write that data to api so that I get all of chapters at once so I have quran and bible apis for it I take care of bible…
yuso
  • 3
  • 3
0
votes
1 answer

how can i convert this Rapid API's HTTP Url to Dart Http request

i have this URL https://zozor54-whois-lookup-v1.p.rapidapi.com/?rapidapi-key=MYAPIKEYb&domain=DOMAINTOCHECK&format=FORMATTYPE rapid API gives two header's and other things I Tried This Code By Exploring HTTP package But Not Working: import…
Dixit Ram
  • 43
  • 6
0
votes
1 answer

ERROR Error: NG02200: Cannot find a differ supporting object '[object Object]' of type 'object'

I'm trying to fetch datas from rapidapi but i get this ERROR message: "ERROR Error: NG02200: Cannot find a differ supporting object '[object Object]' of type 'object'. NgFor only supports binding to Iterables, such as Arrays. Did you mean to use the…
0
votes
1 answer

RapidApi / PAW app not opening on M1 Mac with MacOS Monterey 12.6.2

Since upgrading my M1 Mac to macOS Monterey 12.6.2, RapidAPI app has stopped working. It never opens up. How to fix or debug this? Tried it on another colleague's machine with macOS Monterey 12.6.1 and works fine for them.
Milind
  • 21
  • 3
0
votes
0 answers

API Call returning Gibberish

I'm building a recipe app with Next.js and JS and using RapidAPI for the api. I used the JS axios snippet for the api but when it tries to fetch, it shows the data as gibberish. {data:…
0
votes
1 answer

How to store retrofit2 API responses in an ArrayList and use it to populate recyclerView in Android Studio Kotlin

How can I store responses from api to items array and use it latter val items = ArrayList() for(curr in targetCurrencies) { val request = ServiceBuilder.buildService(ExchangeRateAPI::class.java) val call = …
ISO
  • 11
  • 2
0
votes
0 answers

How to change google sheets, when API changes using Zapier

Disclaimer, I'm new to API's. I have an API key, that holds data for a bunch of different basketball games. I currently have all of the different games in a google sheets document, under which I have the column "scores". I want to update the google…
0
votes
0 answers

Access to image at 'URL' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource

I'm Getting this error while fetching Rapid API From Pure JavaScript. I am using this API For Fetching Instagram Posts, Reels and more: https://rapidapi.com/arraybobo/api/instagram-media-downloader HTML

Download Instagram Posts

Arshcode
  • 1
  • 1
0
votes
0 answers

Uncaught TypeError: Cannot convert undefined or null to object

Getting error in this line as cannot convert undefined or null to abject also i highlighted a line in which error is showing import React from 'react'; import { useParams } from 'react-router-dom'; import { useSelector } from 'react-redux'; import {…
0
votes
0 answers

How to use public RapidApis with Spring boot Rest APIs?

i'm trying to integrate google translation public API with my spring application . I'm expecting a List of languages . I just don't know what type of return type i should choose ? Google Translation Api I tried This but it's not the wanted…