现在订单custid加密了,之前差评找客户又失效了,不过还有新方法
现在订单custid加密了,之前差评找客户又失效了,不过还有新方法
目前的新方法就是找到订单详情。按查找元素,订单详情里还有以下代码。查找 buyerId
现在的订单代码片断,之前 <input class="cust-id" value="A133D1BS426YAN" type="hidden"> 这样的,现在的 <input class="cust-id" value="ArRIZ6ADSFksIrS8p+P8EhQb2XK+qrZt" type="hidden">。
以下是订单的代码详情。
<td class="data-display-field order-cell" style="text-align: left;" valign="top">
<input class="order-id" value="112-888888-888888" type="hidden">
<input class="es-level" value="Back" type="hidden">
<input class="num-shipped" value="2" type="hidden">
<input class="cust-id" value="ArRIZ6ADSFksIrS8p+P8EhQb2XK+qrZt" type="hidden">
<input class="merch-fulfilled" value="0" type="hidden">
<input class="marketplace-id" value="ATVPDKIKX0DER" type="hidden">
<input class="fulfillmentServiceLevel" value="SecondDay" type="hidden">
<input class="latestShipDate" value="1498476999" type="hidden">
<input class="isPrime" value="0" type="hidden">
<input class="numberOfItemsRemainingToShip" value="0" type="hidden">
Sep 27, 2017<br>
4:23:11 AM GMT-05:00
</td>
其中value="ArRIZ6ADSFksIrS8p+P8EhQb2XK+qrZt" 这个就是加密后的custid.显然目前我们不知道加密方法。目前的新方法就是找到订单详情。按查找元素,订单详情里还有以下代码。查找 buyerId
<form id="myo-get-seller-feedback-form" method="post" action="">
<input type="hidden" name="action" value="getSellerFeedback" id="action">
<input type="hidden" name="orderId" value="12-888888-888888" id="orderId">
<input type="hidden" name="orderMarketplaceId" value="ATVPDKIKX0DER" id="orderMarketplaceId">
<input type="hidden" name="buyerId" value="A133D1BS426YAN" id="buyerId">
<input type="hidden" name="numItemsShipped" value="2" id="numItemsShipped">
<input type="hidden" name="orderDate" value="1498476999000" id="orderDate">
</form>
其中 <input type="hidden" name="buyerId" value="A133D1BS426YAN" id="buyerId"> 这个里面 value就是订单买家的custid。亚马逊规则在不断变化,请持续关注AmzTool的最新动态。
这就需要建立数据库方便以后查找。
本文来自:AmzTool
感谢作者:AmzTool