<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Flic Hub - Http Request]]></title><description><![CDATA[<p dir="auto">Hi,</p>
<p dir="auto">It seems that http requests don't work with Flics linked to Flic Hub.<br />
I'm trying to use Flic  and http requests to control <a href="https://volumio.org/" rel="nofollow ugc">Volumio</a> with its <a href="https://volumio.github.io/docs/API/REST_API.html" rel="nofollow ugc">API</a>.<br />
The API calls work with virtual Flic but not with the Flics connected to the Hub.<br />
Anyone was able to use http requests with the Hub ?</p>
<p dir="auto">Thanks,<br />
Arnaud</p>
]]></description><link>https://community.flic.io/topic/17282/flic-hub-http-request</link><generator>RSS for Node</generator><lastBuildDate>Sun, 14 Jun 2026 09:49:23 GMT</lastBuildDate><atom:link href="https://community.flic.io/topic/17282.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 13 May 2018 09:18:56 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Flic Hub - Http Request on Wed, 12 May 2021 10:42:05 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.flic.io/uid/3818">@theo</a> I think you need to add the http:// prefix to the url.</p>
]]></description><link>https://community.flic.io/post/20005</link><guid isPermaLink="true">https://community.flic.io/post/20005</guid><dc:creator><![CDATA[Emil]]></dc:creator><pubDate>Wed, 12 May 2021 10:42:05 GMT</pubDate></item><item><title><![CDATA[Reply to Flic Hub - Http Request on Wed, 12 May 2021 09:07:16 GMT]]></title><description><![CDATA[<p dir="auto">I am having a problem with the FLIC. I am using an internet request to push a letter to a windows based pc. The url is <strong>192.168.0.103:9696/api/flic/A</strong> but when I test it on the the PC it is not responding. Note the HUB and Windows PC are on the same network. How do I resolve the issue or how do I get it working?</p>
]]></description><link>https://community.flic.io/post/20004</link><guid isPermaLink="true">https://community.flic.io/post/20004</guid><dc:creator><![CDATA[theo]]></dc:creator><pubDate>Wed, 12 May 2021 09:07:16 GMT</pubDate></item><item><title><![CDATA[Reply to Flic Hub - Http Request on Fri, 25 Dec 2020 22:59:14 GMT]]></title><description><![CDATA[<p dir="auto">Same issue -</p>
<p dir="auto">local request works on phone but the exact same set up fails on hub.... really annoying.</p>
]]></description><link>https://community.flic.io/post/19718</link><guid isPermaLink="true">https://community.flic.io/post/19718</guid><dc:creator><![CDATA[coopermayne]]></dc:creator><pubDate>Fri, 25 Dec 2020 22:59:14 GMT</pubDate></item><item><title><![CDATA[Reply to Flic Hub - Http Request on Wed, 19 Sep 2018 11:37:02 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.flic.io/uid/2101">@ap-iotbutton</a> That means that TLS certificate validations are skipped, which should only be used for self-signed certificates that the system normally doesn't trust. Can you please tell me the domain name of the website you try to connect to, so we can check if a root certificate is missing?</p>
]]></description><link>https://community.flic.io/post/18376</link><guid isPermaLink="true">https://community.flic.io/post/18376</guid><dc:creator><![CDATA[Emil]]></dc:creator><pubDate>Wed, 19 Sep 2018 11:37:02 GMT</pubDate></item><item><title><![CDATA[Reply to Flic Hub - Http Request on Sun, 16 Sep 2018 04:00:07 GMT]]></title><description><![CDATA[<p dir="auto">Guys, I found the solution.</p>
<p dir="auto">No need to add any HTTP headers.</p>
<p dir="auto">Just uncheck the slider button at "Validate Certificates" at the bottom of the Internet Request page, then your Http requests will work.</p>
]]></description><link>https://community.flic.io/post/18371</link><guid isPermaLink="true">https://community.flic.io/post/18371</guid><dc:creator><![CDATA[ap.iotbutton]]></dc:creator><pubDate>Sun, 16 Sep 2018 04:00:07 GMT</pubDate></item><item><title><![CDATA[Reply to Flic Hub - Http Request on Thu, 14 Jun 2018 11:39:49 GMT]]></title><description><![CDATA[<p dir="auto">So with some pointers from Emil at Flic support,  HUB works if we adopt Authorization: Basic base64.  I would comment that iphone/iPad and FLIC combination seem to work either way.</p>
<p dir="auto">It was not obvious to me initially how to do this in the FLIC app ... so for anyone else wrestling with this ...</p>
<ul>
<li>
<p dir="auto">in FLIC app under your chose Hub, select the Internet Request"Hub Action"</p>
</li>
<li>
<p dir="auto">add your URL  which for me was <a href="http://192.168.1.nnn:80/api/sceneControl?id=nnn&amp;action=start" rel="nofollow ugc">http://192.168.1.nnn:80/api/sceneControl?id=nnn&amp;action=start</a> to run a scene on my home automation box (Fibaro HC2).</p>
</li>
<li>
<p dir="auto">stick with GET http method (in my use case)</p>
</li>
<li>
<p dir="auto">under the HTTP headers (Optional),  set up basic authentication  i.e. type "Authorization" in the Key field of the app</p>
</li>
<li>
<p dir="auto">encode your "user:password" string using base64 (I used <a href="http://base64encode.org" rel="nofollow ugc">base64encode.org</a> for online base64 encoding)</p>
</li>
<li>
<p dir="auto">Prefix the encoded string with "Basic " including a trailing space</p>
</li>
<li>
<p dir="auto">"Basic YWRtaW46YWRtaW4NCg=="  is encoded "admin:admin" as an example.  Key or paste all of this into the Value field in the FLIC app</p>
</li>
<li>
<p dir="auto">Press the INSERT button on the right hand side below the key/value fields.  You should then see this header line with a delete symbol (red circle white bar).</p>
</li>
<li>
<p dir="auto">Press DONE to ensure all saved away</p>
</li>
</ul>
<p dir="auto">It should work now  -  check your user:password encoding as first trouble shooting and/or check you HTTP verb - GET, POST  depending on your target system protocols.</p>
<p dir="auto">Hope that helps someone else get there quicker than me.</p>
]]></description><link>https://community.flic.io/post/18192</link><guid isPermaLink="true">https://community.flic.io/post/18192</guid><dc:creator><![CDATA[ipsofact0]]></dc:creator><pubDate>Thu, 14 Jun 2018 11:39:49 GMT</pubDate></item><item><title><![CDATA[Reply to Flic Hub - Http Request on Thu, 14 Jun 2018 01:21:13 GMT]]></title><description><![CDATA[<p dir="auto">I'm having the same issue. Very disappointing. It's not trying to send the HTTP requests THROUGH flic as a service, is it? That would be really silly.</p>
]]></description><link>https://community.flic.io/post/18191</link><guid isPermaLink="true">https://community.flic.io/post/18191</guid><dc:creator><![CDATA[wwboynton]]></dc:creator><pubDate>Thu, 14 Jun 2018 01:21:13 GMT</pubDate></item><item><title><![CDATA[Reply to Flic Hub - Http Request on Wed, 13 Jun 2018 18:11:05 GMT]]></title><description><![CDATA[<p dir="auto">Well I have only inconsistent behaviour.   I can pair flic to iphone and set up a simple HTTP via Internet Request.</p>
<p dir="auto">Configruation is straightforward.   It is GET with  <em><a href="http://user:pwd@192.168.1.nnn:80/api/sceneControl?id=544&amp;action=start" rel="nofollow ugc">http://user:pwd@192.168.1.nnn:80/api/sceneControl?id=544&amp;action=start</a></em></p>
<p dir="auto">This works fine and triggers the scene on my Fibaro HC2 automation box.</p>
<p dir="auto">EXACTLY the same configuration to different FLIC button paired with the hub ... no repsonse, no error indication, no activity.</p>
<p dir="auto">Any pointers on what to try next ...   at a loss on what I've missed.    HUB not seeming like a market ready product to me at the moment!</p>
]]></description><link>https://community.flic.io/post/18185</link><guid isPermaLink="true">https://community.flic.io/post/18185</guid><dc:creator><![CDATA[ipsofact0]]></dc:creator><pubDate>Wed, 13 Jun 2018 18:11:05 GMT</pubDate></item><item><title><![CDATA[Reply to Flic Hub - Http Request on Wed, 13 Jun 2018 12:46:22 GMT]]></title><description><![CDATA[<p dir="auto">I’ve just tried controlling a smart socket via http from the Hub and it’s working great.<br />
It’s a Kk-sp3 socket and I had to hsck it a bit to get HTTP access but .... success.<br />
See below settings;<br />
<img src="/assets/uploads/files/1528893970788-845fa32b-bf33-45f1-a378-a226e8a0ad10.png" alt="0_1528893978688_845FA32B-BF33-45F1-A378-A226E8A0AD10.png" class=" img-responsive img-markdown" /></p>
]]></description><link>https://community.flic.io/post/18184</link><guid isPermaLink="true">https://community.flic.io/post/18184</guid><dc:creator><![CDATA[nic.b]]></dc:creator><pubDate>Wed, 13 Jun 2018 12:46:22 GMT</pubDate></item><item><title><![CDATA[Reply to Flic Hub - Http Request on Fri, 08 Jun 2018 16:07:28 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.flic.io/uid/1889">@chris_private</a>  <a class="plugin-mentions-user plugin-mentions-a" href="https://community.flic.io/uid/417">@bambi2000</a> <a class="plugin-mentions-user plugin-mentions-a" href="https://community.flic.io/uid/1886">@florian</a></p>
<p dir="auto">I am having no luck with simple HTTP from FLIC HUB to local target - a Fibaro home automation box to start a simple scene  <a href="http://xxx.xxx.xxx.xxx:80/api/scenes/538/action/start" rel="nofollow ugc">http://xxx.xxx.xxx.xxx:80/api/scenes/538/action/start</a>.</p>
<p dir="auto">There is no indication of the failure point  - do we have access to any logs or more detail on the hub?    The level of documentation for this is pretty appalling -  point me at something if I have missed  it please!</p>
]]></description><link>https://community.flic.io/post/18174</link><guid isPermaLink="true">https://community.flic.io/post/18174</guid><dc:creator><![CDATA[ipsofact0]]></dc:creator><pubDate>Fri, 08 Jun 2018 16:07:28 GMT</pubDate></item><item><title><![CDATA[Reply to Flic Hub - Http Request on Fri, 08 Jun 2018 10:28:29 GMT]]></title><description><![CDATA[<p dir="auto">Same here... I did a quick test by spinning up a Docker container on my machine that logs all incoming requests and configured the Flic Hub to send the requests to that container.</p>
<p dir="auto">The results are: Flic hub has no problems with sending requests to IP addresses, but requests sent to hostnames or FQDNs won't arrive at their destination (in this case the Docker container).</p>
<p dir="auto">For me this workaround of using IP addresses is fine, because I will trigger scripts of my Home Assistant in my local network, so I can use the according IP address.</p>
<p dir="auto">But this should definitely be fixed for domains / hostnames!</p>
]]></description><link>https://community.flic.io/post/18173</link><guid isPermaLink="true">https://community.flic.io/post/18173</guid><dc:creator><![CDATA[florian]]></dc:creator><pubDate>Fri, 08 Jun 2018 10:28:29 GMT</pubDate></item><item><title><![CDATA[Reply to Flic Hub - Http Request on Sat, 02 Jun 2018 10:45:03 GMT]]></title><description><![CDATA[<p dir="auto">Same experience here.  Pasting all the field values into an Internet Request on af Flic controlled by my phone works perfectly, but the exact same field values pasted into a Flic controlled by the hub does not work. And there is no indication of what went wrong.<br />
(App version 3.1.0, hub firmware 1.2.0)</p>
]]></description><link>https://community.flic.io/post/18139</link><guid isPermaLink="true">https://community.flic.io/post/18139</guid><dc:creator><![CDATA[bambi2000]]></dc:creator><pubDate>Sat, 02 Jun 2018 10:45:03 GMT</pubDate></item><item><title><![CDATA[Reply to Flic Hub - Http Request on Mon, 28 May 2018 10:11:29 GMT]]></title><description><![CDATA[<p dir="auto">Hi,</p>
<p dir="auto">I'm only just getting started, but my Flic Hub is successfully sending off HTTPS-requests for button events. I'm sending GET/POST/PUT/DELETE to my own server and it's working fine, and very quickly.</p>
<p dir="auto">Have you confirmed the Hub has internet access? Could you try with another URL endpoint to verify the requests come through?</p>
<p dir="auto">The only issue I have right now is that there's nothing useful included in the request. I can manually add headers and body-data, but it would make life much easier if the button-id was included in all requests per default.</p>
]]></description><link>https://community.flic.io/post/18111</link><guid isPermaLink="true">https://community.flic.io/post/18111</guid><dc:creator><![CDATA[andreasrl]]></dc:creator><pubDate>Mon, 28 May 2018 10:11:29 GMT</pubDate></item><item><title><![CDATA[Reply to Flic Hub - Http Request on Thu, 24 May 2018 18:38:01 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.flic.io/uid/1854">@arnaud-perray</a><br />
i can agree with you... - the http-request will not work.<br />
If i test it on the client on my mac all works fine.<br />
but on the hub (all the same values) execution will not work.<br />
also there is no http-response on the hub-app so it makes it very difficult to find the issue.</p>
<p dir="auto">Chris</p>
]]></description><link>https://community.flic.io/post/18102</link><guid isPermaLink="true">https://community.flic.io/post/18102</guid><dc:creator><![CDATA[chris_private]]></dc:creator><pubDate>Thu, 24 May 2018 18:38:01 GMT</pubDate></item></channel></rss>