Http header redirect and cookies

Hello!

I am trying to log in to the site with login/pwd form, use HTTP(Post) with form data spreads connected to nave and value pis.

Server response in http header:

{CODE(ln=>1)}
Server: nginx/0.6.31
Date: Sat, 13 Sep 2008 14:46:54 GMT
Content-Type: text/html; charset=windows-1251
Connection: keep-alive


Set-Cookie: remixpass=48bc5f49a04e4aadaea; expires=Sun, 13-Sep-2009 14:46:54 GMT; path=/; domain=.vkontakte.ru
Set-Cookie: remixcookietest=deleted; expires=Fri, 14-Sep-2007 14:46:53 GMT; path=/; domain=.vkontakte.ru
Location: /id49
Content-Length: 0

^

so, next step is redirect to /id49

I’ve tried to change “URL” pin value with switch, clean name and value pins, and refresh HTTP(Post) node.

Also i’ve tried change HTTP(Post) to HTTP(Get) node when redirect header received.

Result - redirect from /id49 to login page again. I guess it is because /id49 try to get cookies.

Any ideas?

Maybe possible to read html-source of Renderer(URL)? It works, of course.

if i understand you right, you want to login to a website using vvvv. right? well it depends pretty much on the site you are trying to log on.

i would guess that after a POST request with HTTP (Network Post) to the login script you need to do a GET Request HTTP (Network Get) to the page that the server wants you to redirect to.

does that work? Or did you already try that?

Yes, i did.

Now, after sniffer work, i am sure - the problem is in cookies, not sent to the server by vvvv when second page requested.

The HTTP-client-nodes do not support cookies.