抖音增加平台
This commit is contained in:
parent
faa377a462
commit
d3429f6c1b
|
@ -331,15 +331,6 @@ class SpiderDy extends Command
|
|||
break;*/
|
||||
|
||||
case 3:
|
||||
// echo '==========pages='.$pages;
|
||||
try {
|
||||
$dou = new Douyin($k);
|
||||
$list = $dou->get($page, $start, $end, '', $k);
|
||||
$pages = $dou->totalPage;
|
||||
} catch (\Exception $e) {
|
||||
Log::error(dirname(__FILE__) . __LINE__ . $e);
|
||||
}
|
||||
break;
|
||||
case 5:
|
||||
// echo '==========pages='.$pages;
|
||||
try {
|
||||
|
@ -443,9 +434,6 @@ class SpiderDy extends Command
|
|||
$it = $m->get(1, null, null, $item->sn);
|
||||
break;*/
|
||||
case 3:
|
||||
$m = new Douyin($item->os);
|
||||
$it = $m->get(1, null, null, $item->sn, $item->os);
|
||||
break;
|
||||
case 5:
|
||||
$m = new Douyin($item->os);
|
||||
$it = $m->get(1, null, null, $item->sn, $item->os);
|
||||
|
|
|
@ -247,7 +247,7 @@ class Douyin
|
|||
// Log::error('===_certificateList查询page='.$page.'时间:'.date('Y-m-d H:i:s',$start).'--'.date('Y-m-d H:i:s',$end).'====');
|
||||
$this->_getRetriesLock();
|
||||
|
||||
$list = $this->_curl("/life/trip/fulfilment/v1/query/certificate_list?end_time={$end}&page_index={$page}&page_size=50&start_time={$start}&root_life_account_id=" . $this->_id(), $params, 'POST');
|
||||
$list = $this->_curl("/life/trip/fulfilment/v1/query/certificate_list?end_time={$end}&page_index={$page}&page_size=50&start_time={$start}&root_life_account_id=" . $this->_id($osId), $params, 'POST');
|
||||
|
||||
if (empty($list) || $list->status_code != 0) {
|
||||
$this->_getRetriesLock();
|
||||
|
|
|
@ -96,21 +96,6 @@ class Orders {
|
|||
|
||||
break;
|
||||
case 3:
|
||||
$dy = new Douyin($order->os);
|
||||
$it = $dy->get(1, null, null, $order->sn, $order->os);
|
||||
if ($it) {
|
||||
$got = $it[0];
|
||||
|
||||
// 查询未预约状态
|
||||
if ($order->appointment_status != 1) {
|
||||
$appointment_status = $dy->_orderMakeAppointmentStatus($order->sn);
|
||||
if ($appointment_status !== null) {
|
||||
$got['appointment_status'] = 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
break;
|
||||
case 5:
|
||||
$dy = new Douyin($order->os);
|
||||
$it = $dy->get(1, null, null, $order->sn, $order->os);
|
||||
|
@ -191,17 +176,10 @@ class Orders {
|
|||
}
|
||||
|
||||
break;
|
||||
case 3:
|
||||
case 5:
|
||||
$dy = new Douyin($order->os);
|
||||
$it = $dy->get(1, null, null, $order->os);
|
||||
if ($it) {
|
||||
$got = $it[0];
|
||||
}
|
||||
|
||||
break;
|
||||
case 3:
|
||||
$dy = new Douyin($order->os);
|
||||
$it = $dy->get(1, null, null, $order->os);
|
||||
$it = $dy->get(1, null, null, $order->sn);
|
||||
if ($it) {
|
||||
$got = $it[0];
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue