14/09
2015
dev-master
9999999-devLogin to yahoo business page script
MIT
The Requires
by Naoya Nakazawa
Wallogit.com
2017 © Pedro Peláez
Login to yahoo business page script
Login and scraping your business.yahoo.co.jp pages. Insprired Class of login your yahoo.co.jp pages https://gist.github.com/comeonly/3032161., (*1)
PHP 5.4 HTTP_Request2 (pear install HTTP_Request2), (*2)
$ composer install
require 'yahoo_business_browser.php';
$id = '<your id>';
$pass = '<your password>;
$ybb = new YahooBusinessBrowser($id, $pass);
if (empty($ybb->cookies)) {
die('Could not login');
}
$content = $ybb->getGetBody(YahooBusinessBrowser::PARTNER_TOP_PAGE.'/DeliveryReport/index');
if ($content) {
print_r($ybb->body);
}
Author:: Naoya Nakazawa (me@n0ts.org), (*3)
Login to yahoo business page script
MIT