Swader / diffbot-php-client

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

Fatal error: Class 'Diffbot' not found #64

Open lesterjanpearson opened 6 years ago

lesterjanpearson commented 6 years ago
require_once("../diffbot-php-client/vendor/autoload.php");

$diffbot = new Diffbot($token);
$url = 'http://www.sitepoint.com/diffbot-crawling-visual-machine-learning/';
$articleApi = $diffbot->createArticleAPI($url);
ericsala commented 6 years ago

Probably you are not using the correct namespace. Try with... $diffbot = new Swader\Diffbot\Diffbot($token); $url = 'http://www.sitepoint.com/diffbot-crawling-visual-machine-learning/'; $articleApi = $diffbot->createArticleAPI($url);