To determine the IAB category for an IP address using IP2Location.io in Lua, you can use the IP2Location.io API to retrieve geolocation and related data. For more info, please see the IAB categories.
luarocks install json-lua
luarocks install luasocket
local http = require("socket.http")
local ltn12 = require("ltn12")
local json = require("JSON")
local t = {}
local ip = "8.8.8.8"
local key = "YOUR_API_KEY"
local full_url = "https://api.ip2location.io/?format=json&key=" .. key .. "&ip=" .. ip
local status, code, headers = http.request({
method = "GET",
url = full_url,
sink = ltn12.sink.table(t),
})
local jsonstr = table.concat(t)
if code == 200 then
local result = json:decode(jsonstr)
if result.ads_category ~= nil then
print("The IAB category for IP " .. ip .. " is " .. result.ads_category .. ".")
else
error("ERROR: The IAB category field requires a paid subscription to the Security plan.")
end
elseif code == 400 or code == 401 then
if jsonstr:find("error_message") then
local result = json:decode(jsonstr)
error("ERROR: " .. result.error.error_message)
else
error(jsonstr)
end
else
error("ERROR: Unable to call API.")
end
lua test.lua
This script will output the IAB category of specified IP address. Make sure to replace 8.8.8.8 with the IP address you want and replace YOUR_API_KEY to your own API key.
Empower your applications with accurate IP geolocation information now.
Try It for Free