Yandex

Yandex 可以使用直接 URL 或使用 Yandex 搜索栏的查询参数来定位。

yandex

可解析: 否
必需参数: url
可选参数: device_type, session_id

通过向 url 参数提供完整的 Yandex URL,从 Yandex 搜索引擎结果页面检索 HTML。在这种情况下,可以在 URL 本身中指定其他参数。

curl -u SPusername:SPpassword -X POST --url https://scraper-api.smartdaili-china.com/v2/scrape -H "Content-Type: application/json" -d "{\"target\": \"yandex\", \"url\": \"https://yandex.com/search/?text=cookies&lr=10393\", \"parse\": \"False\"}"
import requests

task_params = {
    'target': 'yandex',
    'url': 'https://yandex.com/search/?text=cookies&lr=10393',
    'parse': False,
}

username = 'SPusername'
password = 'SPpassword'

response = requests.post(
    'https://scraper-api.smartdaili-china.com/v2/scrape',
    json = task_params,
    auth = (username, password)
)

print(response.text)
<?php

$params = array(
    'target' => 'yandex',
    'url' => 'https://yandex.com/search/?text=cookies&lr=10393',
    'parse' => False
);

$ch = curl_init();

curl_setopt($ch, CURLOPT_URL, 'https://scraper-api.smartdaili-china.com/v2/scrape');
curl_setopt($ch, CURLOPT_USERPWD, 'SPusername' . ':' . 'SPpassword');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($params));
curl_setopt($ch, CURLOPT_POST, 1);

$headers = array();
$headers[] = 'Content-Type: application/json';
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);

$result = curl_exec($ch);
echo $result;

if (curl_errno($ch)) {
    echo 'Error:' . curl_error($ch);
}
curl_close ($ch);
?>

yandex_search

可解析: 否
必需参数: query
可选参数: domain (com, ru, by, kz), page_from, num_pages, locale, geo (City,Region,Country), device_type, session_id

通过向查询参数提供你的查询,从 Yandex 搜索引擎结果页面检索 HTML。

curl -u SPusername:SPpassword -X POST --url https://scraper-api.smartdaili-china.com/v2/scrape -H "Content-Type: application/json" -d "{\"target\": \"yandex_search\", \"query\": \"cookies\", \"parse\": \"False\"}"
import requests

task_params = {
    'target': 'yandex_search',
    'query': 'cookies',
    'parse': False,
}

username = 'SPusername'
password = 'SPpassword'

response = requests.post(
    'https://scraper-api.smartdaili-china.com/v2/scrape',
    json = task_params,
    auth = (username, password)
)

print(response.text)
<?php

$params = array(
    'target' => 'yandex_search',
    'query' => 'cookies',
    'parse' => False
);

$ch = curl_init();

curl_setopt($ch, CURLOPT_URL, 'https://scraper-api.smartdaili-china.com/v2/scrape');
curl_setopt($ch, CURLOPT_USERPWD, 'SPusername' . ':' . 'SPpassword');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($params));
curl_setopt($ch, CURLOPT_POST, 1);

$headers = array();
$headers[] = 'Content-Type: application/json';
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);

$result = curl_exec($ch);
echo $result;

if (curl_errno($ch)) {
    echo 'Error:' . curl_error($ch);
}
curl_close ($ch);
?>