HTTP-GET header problem

Hi

I need to get information from the response-header of a get-request, is that possible?

The request is like
in curl its

$ curl -i -u 7001011234:567 https://handla.api.ica.se/api/login/
HTTP/1.1 200 OK
Cache-Control: no-cache
Pragma: no-cache
Content-Type: application/json; charset=utf-8
Expires: -1
Server: Microsoft-IIS/7.5
AuthenticationTicket: 8D66EA[..]
SessionTicket: 4F1E80[..]
LogoutKey: 59068e[..]
X-AspNet-Version: 4.0.30319
X-Powered-By: ASP.NET
Date: Sun, 07 Apr 2013 18:44:24 GMT
Content-Length: 55
{"FirstName":"John","LastName":"Doe","Ttl":1200}

And i need the AuthenticationTicket from the header
IS this possible in homey?
image

/Rikard

I haven’t done this specifically but I’ve use homey script to do certain things in my automation. With Homey script you can write your own javascript and use it as a card. I would assume you can easily do a http get request and get the header data.

Hope this points you in the direction of a solution.

I could probably do that, but I would like to do it with regular flowcards.

Homey script is used with/as a regular flow card. You can use/reuse the script and continue other cards after.