PHP code example of barisesen / hurriyet
1. Go to this page and download the library: Download barisesen/hurriyet library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
barisesen / hurriyet example snippets
sen\Hurriyet;
// create a new client instance
$hurriyet = new Hurriyet('your-hurriyet-api-token');
// Filtered article list
$arr = [
'select' => 'Title,Id',
'top' => '10'
];
$data = $hurriyet->get('articles', $arr);
// List id = 40530799 Article
$arr = [
'id' => '40530799'
];
$data = $hurriyet->get('articles', $arr);
var_dump($data);