plreq.gettofile("tmp:/" + channel) code = readasciifile("tmp:/" + channel) Brightscript Debugger> p code Brightscript Debugger> Still nothing. Even though I'm using an old API, I don't think that's contributing to this problem. Even if the API was dead, I should still be able t...
Just tried it, no dice. I also tried plreq.GetToString() just to see if there was any response at all, but the response string was empty and plreq.GetUrl() was also still empty.
I have this code chunk that does an API request and should save the response to a file, but it doesn't. 'channel' is a String. plReq = CreateObject("roURLTransfer") plReq.AddHeader("Client-ID", *my API key*) plReq.SetURL("https://usher.twitch.tv/api/channel/hls/" + chan...
I have this code that builds a URL for doing API requests: Function buildURL(channel As String, token As String, sig As String) as String Return "https://usher.twitch.tv/api/channel/hls/" + channel + ".m3u8?player=twitchweb&token=" + token + "&sig=" + sig &quo...