2
How to construct a regular expression that selects this here?
Set-Cookie: csrftoken=bf8748c0b1e113430d9757cf0ed06f4a; expires=Mon, 04-May-2015 20:54:08 GMT; Max-Age=31449600; Path=/
<input type="hidden" name="csrfmiddlewaretoken" value="676248f0994e62274dea72023fe699ff">
I intend to log in with Curl on instagram.
Still can not understand what you want the regular expression select, can explain better?
– bfavaretto
I just want a regex that picks up these cookies and the input understands ?
– user8300
I think I understand, I edited the question again. The first part is an http header right? It’s not part of HTML.
– bfavaretto
exactly that :p
– user8300
Does using the Instagram API (http://instagram.com/developer) not solve the problem? If you’re logging in to get user information and everything, it’s worth using the API.
– Wakim
I just need the regular expression so that
– user8300