vote up -1 vote down star

I want to write a bot that fetches my mail on Yahoo! but my first problem is I can't fetch the web page where login and password have to be filled in. I do it so:

<?php
$the_url = "http://www.yahoo.com/r/l6";

$ua_s = "Opera/9.62 (Windows NT 5.1; U; En) Presto/2.1.1";

$c = curl_init($the_url);
curl_setopt($c, CURLOPT_RETURNTRANSFER, true);
curl_setopt($c, CURLOPT_USERAGENT, $ua_s);
$the_page = curl_exec($c);
curl_close($c); 

echo $the_page;
?>

But when I do that I get a blank page.

flag
@good Please clarify what your question is – Asaph Oct 7 at 23:07
I need to fetch the login&password page on Yahoo! with help of PHP. – good Oct 7 at 23:22
1  
You know this may well violate the Yahoo! terms of service, right? – ceejayoz Oct 7 at 23:27
Really? Kool! 80) – good Oct 7 at 23:39
You may have an easier time if you use the login url directly: login.yahoo.com/config/login_verify2?&.src=ym/… – Frank Farmer Oct 8 at 0:25
show 2 more comments

5 Answers

vote up 0 vote down

You probably want to set the CURLOPT_FOLLOWLOCATION option to true as the url that you supplied does a redirect.

link|flag
I have added this curl_setopt($c, CURLOPT_FOLLOWLOCATION, true); but I still can't fetch the page. – good Oct 7 at 23:21
What do you fetch? This really isn't the best forum for debugging a problem. But if you can tell us what is happening I'm sure someone will be able to help. Edit your question to add what you are getting back and why it isn't correct. – Rob Booth Oct 7 at 23:24
Ok. I've added. – good Oct 7 at 23:38
vote up 1 vote down

You could use pop access.

link|flag
How to use that? – good Oct 7 at 23:36
Look up the yahoo help. All webmail vendors (Yahoo, GMAIL, hotmail) have pop access that you can configure outlook etc to use to download your mail. Look at the help for yahoo. – Toby Allen Oct 9 at 20:55
vote up -1 vote down

Пиздец. Вопрос закрыт

link|flag
vote up 1 vote down

Use the PEAR::HTTP_REQUEST it's more clean!

Or better PEAR::Mail_IMAP this won't violating the terms of ...

link|flag
a fat lot I care about violating the terms of ... – good Oct 8 at 0:43
vote up 0 vote down

Long story short, the answers you get today may not work tomorrow, as Yahoo will

  1. Be looking for this kind of TOS abuse
  2. May change the structure of their application, breaking your scripts

That means if you want to do something like this, you need to teach yourself how to

  1. Writes down the same cookies that a browser would
  2. Sends back the same cookies as a browser would
  3. Sends the same HTTP header information that a browser would

When I used to do this, I'd always use the CURLOPT_COOKIEFILE and CURLOPT_COOKIEJAR options, and CURLOPT_HTTPHEADER to send back any needed headers. More info on that can be found in the manual.

To find out what headers you'll need to send, I recommend the http://LiveHTTPHeaders extension. It'll give you the raw headers that will let you learn what's going on.

This is a non-trivial task, and you won't find a magic "just do this" answer anywhere.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.