Module:Apitest: Difference between revisions

From RetroMC
Jump to navigation Jump to search
No edit summary
(fixed typo)
Line 6: Line 6:


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



Revision as of 16:39, 3 February 2024

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





local http = require('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 API Down'
   end
end

return p