Status
Not open for further replies.

t3od0r

Active Member
1,419
2008
183
10
I have a mod for my script WLOL to autopost to pinterest.

Until now was working fine on all my clients but now i tried installling on a site and isn't working.

The cookies aren't saved correctly i guess.

The only change in the cookie file that i see is this:
#HttpOnly_.pinterest.com

on my site i have only this:
.pinterest.com

I really can't see the issue here

Code:
# Netscape HTTP Cookie File
# http://curl.hax******rfc/cookie_spec.html
# This file was generated by libcurl! Edit at your own risk.

pinterest.com    FALSE    /    FALSE    1370600284    csrftoken    d3d4ef7fd062d6b74df29dd18a963
#HttpOnly_.pinterest.com    TRUE    /    FALSE    -1616061126    _pinterest_sess    "eJwNy7EKgzAQANC/6Ry1Q5ejCDmww12wXJRMQlMHIw4lhdj7+mZ60xueYunhd1NsN7usn32Yb1NrXohwX77bsQIJqRNsyIYrjwCXvOa8vYElNpTQUIrF2b6whB+nYFjHs57C6uuJJ2moYkvJwx/gpCRD"

Code:
# Netscape HTTP Cookie File
# http://www.netscape.com/newsref/std/cookie_spec.html
# This file was generated by libcurl! Edit at your own risk.

pinterest.com    FALSE    /    FALSE    1370596812    csrftoken    d3d4ef7fd062dde74df29dd18a963
.pinterest.com    TRUE    /    FALSE    -1616309291    _pinterest_sess    "eJwtzLEKgzAUheG3celQtTqGEoiDhXwXtIkXTYKRUTEvsffpm6HCWD/5j0+Y6Jd1xvTw2f7sfIFnU0nTs2pc4D3pf5007AQRcUc9AtQcjRDS856f+s/yi7T3UgZ12bp6CjzmQDCHBXGlRkZVxMC1R25TtGUKqszC5Y5UxNHH6W0IMbJktCEiycC9r8icgEvxAzDxOPE="

I think is a server side issue but i don't know much about servers
 
3 comments
before saving that cookie try to echo that cookie,if its shows same like #HttpOnly_.pinterest.com,then replace that unwanted characters and try.
 
are mixed request's?

http://www.domain.com

&

http://domain.com


for http://domain.com
working cookie is below

Code:
pinterest.com    FALSE    /    FALSE    1370600284    csrftoken    d3d4ef7fd062d6b74df29dd18a963


for http://www.domain.com
working cookie is
Code:
#HttpOnly_.pinterest.com    TRUE    /    FALSE    -1616061126    _pinterest_sess    "eJwNy7EKgzAQANC/6Ry1Q5ejCDmww12wXJRMQlMHIw4lhdj7+mZ60xueYunhd1NsN7usn32Yb1NrXohwX77bsQIJqRNsyIYrjwCXvOa8vYElNpTQUIrF2b6whB+nYFjHs57C6uuJJ2moYkvJwx/gpCRD"

i am not sure about how curl parse cookie, but this is my general concept related with .NET!

if u can tell domain name & paste section of script i can help a bit!
 
Status
Not open for further replies.
Back
Top