Files
aiolauncher_scripts/quotes-ru-widget.lua
2021-07-30 10:42:12 +03:00

17 lines
554 B
Lua

-- name = "Цитаты великих"
-- description = "Рандомные цитаты на русском (forismatic.com)"
-- type = "widget"
-- author = "Evgeny Zobnin (zobnin@gmail.com)"
-- version = "1.0"
function onAlarm()
net:getText("http://api.forismatic.com/api/1.0/?method=getQuote&format=json&lang=ru")
end
function onNetworkResult(result)
local quote = json:getValue(result, "object string:quoteText")
local author = json:getValue(result, "object string:quoteAuthor")
ui:showLinesWithAuthors({ quote }, { author })
end