从实时数据采集器收集数据

API endpoint: GET /dca/get_result?response_id={ID_RESPONSE}
Parameters :
  • response_id={ID_RESPONSE} – An unique identification of response
Payload :
  • Header: Authorization Bearer Key -H "Authorization: Bearer API_TOKEN"
Sample Response :
{
    "input": {
        "url": "https://targetwebsite.com/product_id/"
    },
    "lines": [
        {
            "Image": "https://targetwebsite.com/product_id.png",
            "Title": "product_name",
            "Price": "product_price",
        }
    ]
}
 
Shell
curl"https://api.brightdata.com/dca/get_result?response_id=ID_RESPONSE" -H "Authorization: Bearer API_TOKEN"

Node.js

#!/usr/bin/env noderequire('request-promise')({
	url: 'https://api.brightdata.com/dca/get_result?response_id=ID_RESPONSE',
	headers: {'Authorization':'Bearer API_TOKEN'},
}).then(function(data){ console.log(data); },
	function(err){ console.error(err); });

Java

packageexample;

importorg.apache.http.HttpHost;
importorg.apache.http.client.fluent.*;

public classExample {
  public static voidmain(String[] args) throwsException {
    String res = Executor.newInstance()
.addHeader("Authorization", "Bearer API_TOKEN")

.execute(Request.Get("https://api.brightdata.com/dca/get_result?response_id=ID_RESPONSE"))
.returnContent().asString();
System.out.println(res) }

}

C#

usingSystem;
usingSystem.Net;
usingSystem.Net.Http;
usingSystem.Net.Http.Headers;

public classProgram {
  public static asyncTaskMain() {
    var client = newHttpClient();
    var requestMessage = newHttpRequestMessage {
      Method = HttpMethod.Get,
RequestUri = newUri("https://api.brightdata.com/dca/get_result?response_id=ID_RESPONSE"), Headers = { {"Authorization", "Bearer API_TOKEN"} } }; var response = await client.SendAsync(requestMessage); var responseString = await response.Content.ReadAsStringAsync(); Console.WriteLine(responseString); } }

Python

#!/usr/bin/env python
print('If you get error "ImportError: No module named requests", please install it:\n$ sudo pip install requests');
import requests

headers = {'Authorization': 'Bearer API_TOKEN'}
r = requests.get('https://api.brightdata.com/dca/get_result?response_id=ID_RESPONSE', headers=headers)
print(r.content)

这篇文章有帮助吗?