3

有人成功使用 CJ 网络服务吗?java.lang.NullPointerException即使我的应用程序是 .net (显然是他们的错误),我也会不断收到s 。CJ 支持甚至不知道 Web 服务是什么。我用谷歌搜索,发现很多人遇到这个或其他错误。问题是:这是一个暂时的问题,还是我注定要永远解析手动下载的报告?

我尝试使用的特定 API 是每日发布者佣金服务是 WSDL。

链接:

4

6 回答 6

3

花了很多天后,这段代码对我有用。

$client = new SoapClient($cjCommissionUrl,

    array('trace' => 1,
    'soap_version' => SOAP_1_1,
    'style' => SOAP_DOCUMENT,
    'encoding' => SOAP_LITERAL
    ));


$date = '06/23/2010';
    $results = $client->findPublisherCommissions(array(
    "developerKey" => $cjDeveloperKey,
    "date" => $date,
    "dateType" => 'posting',
    "countries" => 'all',
));
于 2010-06-30T05:02:28.477 回答
2

我已经成功地将 CJ 的 API 与 PHP 一起使用,但不是这个特定的 WSDL。我对缺乏文档感到非常困扰,甚至找不到任何认真的程序员使用它(所有业余爱好者基本上都在尝试复制粘贴)。如果您有更多经验,我们也许可以互相帮助。

于 2010-01-04T17:51:22.000 回答
1

例如创建一个页面 cjcall.php

粘贴此代码并根据您的要求进行操作,即关键字、设备 ID、每页记录

include('../../../../wp-load.php');

$stringkeyw=urlencode(get_option('cj_keyword'));
if(get_option('rm_num_products')==''){
$pperkeyword=50;
}else{
$pperkeyword= get_option('rm_num_products');
}//number of products against keyword

$ch = curl_init();

curl_setopt($ch, CURLOPT_URL, "https://product-search.api.cj.com/v2/product-search?website-id=".get_option('cj_siteid')."&keywords=".$stringkeyw."&records-per-page=".$pperkeyword."&serviceable-area=US");

curl_setopt($ch, CURLOPT_HEADER,false); 

curl_setopt($ch, CURLOPT_HTTPGET, true); 

curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);

curl_setopt($ch, CURLOPT_HTTPHEADER, array("Accept: application/xml",  "Authorization:".get_option('cj_devid').""));

$result = curl_exec($ch);

创建另一个页面并粘贴以下代码以从该页面获取 xml:

$hurl= home_url();
$homepage = file_get_contents(''.$hurl.'/wp-content/plugins/rapid_monetizer/cronjob/cjcall.php');
$object = simplexml_load_string($homepage);

    foreach($object->products->product as $cjres)
    {
       //do your code with products coming in $cjres
         }
于 2013-12-23T07:24:24.623 回答
1

我编写了一个 Python 库,用于从 CJ 检索佣金信息。这是代码:https ://github.com/sidchilling/commissionjunction-python-lib

为我工作。

于 2013-03-08T06:44:59.430 回答
0

我可以为你做一个用户界面来解除你的诅咒!!!

使用每日出版商佣金报告服务!

如果您仍然需要帮助,请在这里告诉我。

于 2009-04-07T22:46:02.067 回答
0

编辑:首先,如果没有佣金报告,您将不会得到任何结果。

我正在使用这些 API,我对任何 REST API 都没有问题,用于每日发布者佣金服务的 SOAP API 似乎无法正常工作。结果来自:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:api="https://pubcommission.api.cj.com">
       <soapenv:Header/>
       <soapenv:Body>
          <api:findPublisherCommissions>
             <api:developerKey>*DEVKEY*</api:developerKey>
             <api:date>01/19/2007</api:date>
             <api:dateType>event</api:dateType>
             <api:advertiserIds></api:advertiserIds>
             <api:websiteIds>123456</api:websiteIds>
             <api:actionStatus>all</api:actionStatus>
             <api:actionTypes></api:actionTypes>
             <api:adIds></api:adIds>
             <api:countries></api:countries>
             <api:correctionStatus></api:correctionStatus>
             <api:sortBy>commissionAmount</api:sortBy>
             <api:sortOrder>desc</api:sortOrder>
          </api:findPublisherCommissions>
       </soapenv:Body>
    </soapenv:Envelope>

这是完全有效和正确的,给了我一个 HTML 页面。您的错误可能与将页面解析为 XML 有关。

结果是:

<html>
<head>
<title>Web Services</title>
</head>

<body vlink="#333333" alink="#FFCC33" bgcolor="#FFFFFF" leftmargin="0" marginwidth="0" topmargin="0" marginheight="0">
    <table cellpadding="0" cellspacing="0" border="0" width="100%">
        <tr>
            <td background="images/header_bg.gif">
                <a href="http://webservices.cj.com"><img src="images/header.gif" width="600" height="63" border="0" alt="webservices.cj.com" /></a>
            </td>
        </tr>
    </table>



<h3>Latest WSDLs</h3>
<table width=70%><tr><td>
<ul>
  <li>ProductSearchServiceV2.0<a href="wsdl/version2/productSearchServiceV2.wsdl">[wsdl]</a><img src="images/new11.gif"  width="40" height="15"/></li>
  <li>LinkSearchServiceV2.0<a href="wsdl/version2/linkSearchServiceV2.wsdl">[wsdl]</a><img src="images/new11.gif"  width="40" height="15"/></</li>  
  <li>PublisherCommissionService and ItemDetails V2.0<a href="wsdl/version2/publisherCommissionServiceV2.wsdl">[wsdl]</a><img src="images/new11.gif"  width="40" height="15"/></</li>
  <li>RealTimeCommissionServiceV2.0<a href="wsdl/version2/realtimeCommissionServiceV2.wsdl">[wsdl]</a><img src="images/new11.gif"  width="40" height="15"/></</li>
  <li>AdvertiserSearchService<a href="wsdl/version2/advertiserSearchServiceV2.wsdl">[wsdl]</a></li>
  <li>FieldTypesSupportService<a href="wsdl/version2/supportServiceV2.wsdl">[wsdl]</a></li>
</ul>
</td></tr></table>

<h3>Previously Released WSDLs</h3>
For previous versions of the wsdls <a href="old_versions.jsp">click here.</a><p>

<h3>Sign Up</h3>
<ul>
  <li><a href="sign_up.cj">Sign Up</a></li>
</ul>

</body>
</html>

我已经给他们发了一封电子邮件,期待今天的回复。我将与您确认此 API 仍然可用,它可能已被实时发布者佣金 API 完全取代。

于 2010-06-15T17:54:26.267 回答