Need help finding where to start learning API calls in java

Hello, this may be answered somewhere else but I can’t seem to find it.

I am trying to make a java program to find live channels in a persons followed list but am having trouble on finding out how to use things like this in java.

curl -H 'Accept: application/vnd.twitchtv.v5+json' \
-H 'Client-ID: uo6dggojyb8d6soh92zknwmi5ej1q2' \
-H 'Authorization: OAuth cfabdegwdoklmawdzdo98xt2fo512y' \
-X GET 'https://api.twitch.tv/kraken/streams/followed'

I have been programming in java for a few years, but have not really explored out side of it. Would this be a good time to just learn a new language? and if so, what language would be best for making a desktop program that can do this?

Sorry if that has been answered else where, just have got frustrated with the implementations I have found so far.

Java should provide a way to make HTTP calls via cURL. You just need to be able to make HTTP calls.

Alternatively look at a Java library to skip that part and help.

From the libraries Discord

image

If none of that is of use, you literally just need to be able to make http get/post calls

Alright. Thanks for the help. I think that will get me the starting point that I need. I had no idea how to even use the info so that is the main first step.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.