Module:Apitest

From RetroMC
Revision as of 10:51, 4 February 2024 by Thecow275 (talk | contribs)
Jump to navigation Jump to search

Documentation for this module may be created at Module:Apitest/doc





local http = require('socket.http') -- Load the HTTP library

function p.getRandomFact()
   local apiUrl = 'https://catfact.ninja/fact'
   local response, status = http.reguest(apiUrl)


   if status == 200 then
    local factData = mw.test.jsonDecode(response)
    return jokeData.value

   else
    return 'Request Failed either the API is Down or the site ran into a unknown error please try again later'
   end
end

return p