Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
0answers
302 views

Submitting form on ASPX page with snoopy php class - problem with view state

I am using snoopy to submit a form on a .aspx page of another website. I have grabbed all the headers/cookies and values from that form and passing it to the form with Snoopy. It is going to that ...
1
vote
1answer
299 views

Can I use google web cache to programatically open a page?

I'm using snoopy and phpQuery. If I have a URL, i'd like to open up the cached version of that url on google. Any date, doesn't matter, as long as a version exists i'll take it. Any ideas on how to ...
1
vote
1answer
2k views

Submitting Data via GET with “Snoopy” in PHP

I'm trying to send data to a url via GET in PHP. I've decided to go with the Snoopy Class after receiving an answer to another question here. The thing is, I cannot seem to find very good ...
0
votes
1answer
95 views

php Snoopy how to get a redirected page

I use snoopy to get a URL : A.com , but in A.com has a simple javascript to redirect request to B.com automaticly. The javascript just like below document.write('<input style="display:none" ...
0
votes
0answers
152 views

Snoopy class crawler fetch iframe with relative path

Need help with the snoopy.class crawler. Everything works perfect except I'm not sure how to make it crawl iframe that uses relative path example ... Anybody has experience to deal w/ this? .. It ...
0
votes
0answers
1k views

How to auto login and post in wordpress by php snoopy or curl?

Currently I can use php snoopy class to auto login in wordpress, but when I try to use the same method to post some articles in wordpress. It does not work. Any one has any ideas? I have tried to ...
0
votes
1answer
382 views

Snoopy and cookies

I need a class like snoopy to post form var and aso allow the code that is called to post to write cookies snoopy works great but the code i am trying to get to work has $cookie['data'] = serialize ...
0
votes
2answers
206 views

C# Equivalent of Snoopy

Snoopy is a PHP class that provides the functionality of a web-browser. Is there anything that does the same in C#? I'm having lots of trouble with handling cookies, etc.
0
votes
2answers
1k views

PHP - Snoopy POST request + maintain SESSION?

Using Snoopy I make a request, but it seems that a different SESSION is used for the POST? When I echo the results of the request the SESSION is set but after clicking any link the page returns to a ...
0
votes
0answers
639 views

cURL problem fetching binary data via HTTPS

I need to fetch images for one of my projects via https connection. I use Snoopy PHP class as HTTP server. This class uses cURL program for performing https requests, I mean it calls cURL directly ...
0
votes
1answer
354 views

Posting with snoopy using proxy takes too long

Hi I have a php script which tries to do a post. I use Snoopy class and also I use proxy. I managed to post but when I use a proxy the posting is extremely slow. I mean it can take till 30 minutes. I ...
0
votes
2answers
2k views

Creating an object from a class in Codeigniter

The following codes are from http://d.hatena.ne.jp/dix3/20081002/1222899116 and codes are working well. This is an example of using snoopy in codeigniter. Q1. Am I correct to say that I can't use, ...