Swader / diffbot-php-client

[Deprecated - Maintenance mode - use APIs directly please!] The official Diffbot client library
MIT License
53 stars 20 forks source link

Add ability to retrieve URL report URL for download #53

Closed tegansnyder closed 7 years ago

tegansnyder commented 7 years ago

This adds the ability to retrieve the URL to download the URL report. Example usage:

$diffbot = new Diffbot(MY_TOKEN_HERE);
$crawl = $diffbot->crawl('SomeCrawlNameHere');
$url_report = $crawl->getUrlReportUrl();

// show the url to the url report
echo $url_report;
Swader commented 7 years ago

Brilliant, thanks