この PHP-Oara ライブラリhttps://github.com/fubralimited/php-oaraを Github で見つけました。すでにすべてをセットアップしています。
$networkName = "Amazon"; //Ex: AffiliateWindow
//Retrieving the credentials for the network
$config = Zend_Registry::getInstance()->get('credentialsIni');
$configName = strtolower($networkName);
$credentials = $config->$configName->toArray();
//Path for the cookie located inside the Oara/data/curl folder
$credentials["cookiesDir"] = "example";
$credentials["cookiesSubDir"] = $networkName;
$credentials["cookieName"] = "test";
//The name of the network, It should be the same that the class inside Oara/Network
$credentials['networkName'] = $networkName;
//Which point of view "Publisher" or "Advertiser"
$credentials['type'] = "Publisher";
//The Factory creates the object
$network = Oara_Factory::createInstance($credentials);
credentials.ini
ファイルに必要な詳細も追加しました。
;------------Amazon (All the newtwork are available)------------
;The user name used in Amazon associates to log in
amazon.user = 'my amazon affiliate email'
;The password used in Amazon associates to log in
amazon.password = 'my amazon affiliate password'
;Network we are going to log in: uk, es, us, ca, de, fr, it, jp, cn.
amazon.network = 'us'
しかし、次のエラーが発生します。
Failed to find log in form!
最初はログインフォームの名前だと思っていました:
if (!preg_match('/<form name="signIn".*?<\/form>/is', $page, $form)) {
die('Failed to find log in form!');
}
https://affiliate-program.amazon.comの名前は実際にはあるので、sign_in
変更しても効果はありませんでした。
しかし、実際の問題は、$page
変数が実際には空であることです。このライブラリが壊れている、またはセットアップで何か間違ったことをしたと想定しても安全ですか? 同じことを実行できる他のライブラリをお勧めできますか、または、Amazon アフィリエイト Web サイトにログインしてレポートを取得するための独自のライブラリを作成するのに役立つリソースを教えてください。
前もって感謝します!