12-08-2022, 07:50 PM
Below is some code to grab a random Kanye "Ye" West quote:
Code: (Select All)
Option Explicit
$NoPrefix
$Console:Only
$Unstable:Http
Dim As Long connection: connection = OpenClient("HTTP:https://api.kanye.rest/")
If connection <> 0 And StatusCode(connection) = 200 Then
Dim As String buf, outbuf
While Not EOF(connection)
Get connection, , buf
outbuf = outbuf + buf
Wend
outbuf = Mid$(outbuf, 11)
outbuf = Mid$(outbuf, 1, Len(outbuf) - 2)
Print outbuf
Print: Print "-Kanye West"
End If
Ask me about Windows API and maybe some Linux stuff