Search found 129 matches

by BoBo
21 Mar 2020 19:48
Forum: User Help / Bug Reports
Topic: shortening links with bit.ly
Replies: 11
Views: 25823

Re: shortening links with bit.ly

@Desmanto
had a try with setting a User-Agent at HTTPRequest, and it worked flawless for u.nu + is.gd
Thx :)
by BoBo
21 Mar 2020 11:41
Forum: User Help / Bug Reports
Topic: Requesting OneDrive ...
Replies: 12
Views: 26486

Re: Requesting OneDrive ...

Thx for your interest. I've used the POST method bc it was the only option for all requests shown at this (also above) linked MS reference :arrow: https://docs.microsoft.com/en-us/onedrive/developer/rest-api/api/driveitem_createlink Sample of a OneDrive Sharing Link (not accessible using PLP) https:...
by BoBo
20 Mar 2020 13:57
Forum: User Help / Bug Reports
Topic: shortening links with bit.ly
Replies: 11
Views: 25823

Re: shortening links with bit.ly

@tsolignani, just 4 the records, I've wrote a note to u.nu to advise them about errors thrown out if requested (using Automagic). Here's their/his response (my comments in yellow) : First, you've sent to incorrect email address, this is for abuse complaint not for advise purpose. (Well, they didn't ...
by BoBo
20 Mar 2020 10:41
Forum: User Help / Bug Reports
Topic: Requesting OneDrive ...
Replies: 12
Views: 26486

Requesting OneDrive ...

... using Action:HttpRequest. Hi, I'm using an Amazon Echo to voice trigger sound files that are hosted at Microsoft's OneDrive cloud storage. To make this happen Alexa's PLP (PLayListPlayer*)-Skill needs the direct download links/path to every one of those MP3-files. The only way to get those for t...
by BoBo
19 Mar 2020 15:02
Forum: User Help / Bug Reports
Topic: shortening links with bit.ly
Replies: 11
Views: 25823

Re: shortening links with bit.ly

The bit.ly API expects some oAuth ! https://dev.bitly.com/v4_documentation.html Well, you could set up your own SQL DB based 'Automagic' converter - but that means to reinvent the wheel: https://yourls.org Good luck :!: ----- Ooops, looks like u.nu offers the same functionality as is.gd . So the fol...
by BoBo
19 Mar 2020 09:22
Forum: User Help / Bug Reports
Topic: How to add additional numbers to a call
Replies: 6
Views: 15828

Re: How to add additional numbers to a call

Based on MickyMicky's suggestion ... :idea: :?:
Action > Sound > File
http://www.mediacollege.com/audio/tone/files/dtmf.zip
by BoBo
18 Mar 2020 16:35
Forum: User Help / Bug Reports
Topic: run control UI unattended
Replies: 2
Views: 8236

Re: run control UI unattended

Hi, What about creating an HttpRequest (server) instance that delivers its current status if requested by a potential 'interferer'?? That way the running process could provide even changing status levels in real-time ("TrackingLevel: 9of10"). And bc the thing is about monitoring file transfers I'd g...
by BoBo
18 Mar 2020 13:22
Forum: Flow Sharing Area
Topic: Weather Underground
Replies: 1
Views: 9825

Weather Underground

Hi, I've used the W(eather)Underground-app for several years (Android&iOS), but had to realize that it will be abandoned a few days from now. Nevertheless, you can still get your basic data from their website. To call it with a/your weather station, you only have to identify its specific ID and run ...
by BoBo
18 Mar 2020 00:52
Forum: General
Topic: Script
Replies: 3
Views: 14301

Re: Script

Modulo?! (wird unter Action > Script gelistet).
"Modulo 2 teilt die Zahl durch zwei und gibt den Rest zurück der dabei rauskommt. Ist der Rest 0 ist die Zahl gerade, ist er 1 ist sie ungerade"

Code: Select all

If (value % 2 == 0) {
   GanzZahl = "Gerade Zahl"
   } Else {
   GanzZahl = "Ungerade Zahl"
   }
by BoBo
18 Mar 2020 00:21
Forum: General
Topic: Scripts - language and tutorial
Replies: 3
Views: 16310

Re: Scripts - language and tutorial

JFTR; bei Heise.de (Herausgeber c't-Magazin) wurden gerade App-gestützte Programmiersprachen behandelt. Hier die Links: Py SoloLearn Grasshopper (nett, aber ein JavaScript-Derivat, sprich kein 'reines' JS) Unter Windows verwende ich auch AutoHotkey . BTW, Java/JavaScript/Python sind die aktuell meis...