json http

Bene //

Участник
Автор темы
128
6
Версия MoonLoader
.027.0-preview
Можно ли сделать чтобы скрипт вводил какой-либо текст в это поле?
1699998257133.png
 
Решение
Lua:
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...

moreveal

Известный
Проверенный
928
624
Lua:
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
 
  • Нравится
Реакции: Rice.