Anonymous

Module:PriceServer: Difference between revisions

From The Blockheads Wiki
no edit summary
(Created page with "local Prices = {} local function fetchPrices() local apiUrl = "http://priceserver.theblockheads.net/get_prices.php" local response, code = mw.http.get(apiUrl) if code ~= 200 then return nil, "Error retrieving prices " .. tostring(code) end -- Parse the response local json = require('json') return json.decode(response) end function Prices.getPrice(id) local pricesData, err = fetchPrices() if err then return err end if pricesData th...")
 
No edit summary
Line 2: Line 2:


local function fetchPrices()
local function fetchPrices()
local http = require('requests')
local apiUrl = "http://priceserver.theblockheads.net/get_prices.php"
local apiUrl = "http://priceserver.theblockheads.net/get_prices.php"
local response, code = mw.http.get(apiUrl)
local response, code = http.get(apiUrl)
if code ~= 200 then
if code ~= 200 then