Skip to content

Instantly share code, notes, and snippets.

@sertdfyguhi
Created November 10, 2020 12:04
Show Gist options
  • Save sertdfyguhi/34b16064c1388147f77021c705cec892 to your computer and use it in GitHub Desktop.
Save sertdfyguhi/34b16064c1388147f77021c705cec892 to your computer and use it in GitHub Desktop.
Scriptable app script to get neko from nekos.life
let widget = new ListWidget()
let req = new Request("https://nekos.life/api/v2/img/neko")
let json = await req.loadJSON()
let imgreq = new Request(json.url)
let img = await imgreq.loadImage()
widget.addImage(img).centerAlignImage()
widget.presentLarge()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment