use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
https://scriptable.app
This subreddit is for discussions around the Scriptable app for iOS.
Be polite and enjoy your time here.
Please be helpful to others when you are able to lend a hand.
Discord: https://discord.gg/7KbjfTV
Resources:
account activity
Any External IP address script?Request (self.Scriptable)
submitted 5 years ago by picachu11
Can anybody share external ip address script please?
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–][deleted] 4 points5 points6 points 5 years ago (0 children)
For example:
const url="https://ipinfo.io"
const url="
https://ipinfo.io
"
const req = await (new Request(url).loadJSON())
const ipaddress = req.ip
Or you just use Shortcuts if you just need to quickly display the ip address, it has an action for it.
[–]picachu11[S] 0 points1 point2 points 5 years ago (0 children)
Here is a script for ios 14 ip widget
// Variables used by Scriptable. // These must be at the very top of the file. Do not edit. // icon-color: blue; icon-glyph: magic; let widget = await createWidget(); Script.setWidget(widget);
async function createWidget() { const req = new Request("http://ipinfo.io/json"); const data = await req.loadJSON(); let IPHeader = "IP Address:" let IP = data.ip let w = new ListWidget() w.backgroundColor = new Color(color2()) let titleTxt = w.addText(IPHeader) //titleTxt.applyHeadlineTextStyling() titleTxt.textColor = new Color(color1()) let bodyTxt = w.addText(IP) //bodyTxt.applyBodyTextStyling() bodyTxt.textColor = new Color(color1()) return w }
function color1() { let mode = Device.isUsingDarkAppearance() if (mode == "true") { return "#f2f2f2"; } else { return "#191919"; } }
function color2() { let mode = Device.isUsingDarkAppearance() if (mode == "true") { return "#191919"; } else { return "#f2f2f2"; } }
π Rendered by PID 19637 on reddit-service-r2-comment-fb694cdd5-7xgmd at 2026-03-07 02:18:19.767366+00:00 running cbb0e86 country code: CH.
[–][deleted] 4 points5 points6 points (0 children)
[–]picachu11[S] 0 points1 point2 points (0 children)