local copas = require 'copas'
local requests = require 'requests'
-- snippet: https://www.blast.hk/threads/20532/
function httpRequest(method, request, headers, args, handler)
-- start polling task
if not copas.running then
copas.running = true
lua_thread.create(function()
wait(0)
while not copas.finished() do
local ok, err = copas.step(0)
if ok == nil then error(err) end
wait(0)
end
copas.running = false
end)
end
-- do request
if handler then
return copas.addthread(function(m, r, hh, a, h)
copas.setErrorHandler(function(err) h(nil, err) end)
h(requests.request(m, r, hh, a))
end, method, request, headers, args, handler)
else
local results
local thread = copas.addthread(function(m, r, hh, a)
copas.setErrorHandler(function(err) results = {nil, err} end)
results = table.pack(requests.request(m, r, hh, a))
end, method, request, headers, args)
while coroutine.status(thread) ~= 'dead' do wait(0) end
return table.unpack(results)
end
end
function upload(data)
local response, err = httpRequest('POST', {
'https://json.extendsclass.com/gui/bin',
headers = {
['Content-Type'] = 'text/plain; charset=UTF-8',
['User-Agent'] = 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36',
['Origin'] = 'https://extendsclass.com',
['Referer'] = 'https://extendsclass.com/',
['Api-Key'] = 'noaccount'
},
data = data
})
if err then
return "error [" .. err .. "]"
end
local jsonData = decodeJson(response.text)
return jsonData['uri']
end
function main()
local upload_url = upload('some data')
print(upload_url) -- https://json.extendsclass.com/bin/27fefd6a9aed
end