2017 © Pedro Peláez
 

library yahoo_business_browser

Login to yahoo business page script

image

n0ts/yahoo_business_browser

Login to yahoo business page script

  • Monday, September 14, 2015
  • by n0ts
  • Repository
  • 1 Watchers
  • 0 Stars
  • 0 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

yahoo_business_browser

About

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)

Requirements

PHP 5.4 HTTP_Request2 (pear install HTTP_Request2), (*2)

Installation

$ composer install

Sample

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);
}

Authors

Author:: Naoya Nakazawa (me@n0ts.org), (*3)

The Versions

14/09 2015

dev-master

9999999-dev

Login to yahoo business page script

  Sources   Download

MIT

The Requires

 

by Naoya Nakazawa