Any example how to connect to an api sending GET vars and show the data on the UX?
The api (made with json) requests are formated like this “movie.apib/discover/movie?sort_by=popularity.desc” and it need an api key that you have to send using an http parameter like this “https://api.themoviedb.org/3/movie/550?api_key=##”
that request will respond with a list of the movies sorted by popularity.
i need to get that response and list all the movies (or at least 20 of them).
Thanks