skip to Main Content

Deno unexpected internal error encountered – Ubuntu

I make a lot of fetches through the fetch-API in Deno TypeScript. The problem now is that randomly I get the following error (can't be caught by try-catch): error: Uncaught (in promise) TypeError: error sending request for url (https://www.googleapis.com/calendar/v3/calendars/****@group.calendar.google.com/events/?calendarId=****group.calendar.google.com): http2…

VIEW QUESTION

How to output fetch request response in react native

I want to print out the response of my fetch request in react native. How would I do this to get the response inside a Text? function Nft() { fetch( "https://api.coingecko.com/api/v3/simple/price?ids=bitcoin&vs_currencies=usd" ); return ( <View> <Text style={style.header}>Bitcoin Price</Text> </View> );…

VIEW QUESTION
Back To Top
Search