I understand how to make REST requests and handle the returning JSON data, but now I need to work with an API that returns data as plain text, one word per line.
Assuming I can just make a standard GET request, how do I parse the plain text response into something I can use—an array of strings?
Any help greatly appreciated.