16 Jan 2020, 23:58

Thanks for the feedback!
Yes we are a quite small team and don't have time to do everything we would want.

Android TV is available if you search for it in the app, but since it doesn't work as perfect/stable as we would like, we removed it from the list in the app in order to not promote it.

What doesn't work with your http request? The first row (GET, POST) etc. directly translates to the verb. URL is the URL you try to reach and Headers (Key, Values) are normal HTTP headers.

For example, in the Flic app, these settings:
POST
URL: http://www.example.com/something/here
Headers:
Key: ExampleKey, Value (STRING): ExampleValue (then press ADD)
Body: example_body
Content Type: application/text
Timeout: (enter the timeout in seconds)

would translate into the following HTTP request:

POST /something/here HTTP/1.1
Host: www.example.com
ExampleKey: ExampleValue
Content-Type: application/text
Content-Length: 12

example_body

and it will be sent to the TCP host www.example.com at port 80. (TLS is used if the URL has https:// as prefix, and defaults to port 443).