PHP code example of oliverearl / php-hashnode
1. Go to this page and download the library: Download oliverearl/php-hashnode 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/ */
oliverearl / php-hashnode example snippets
$client = new Hashnode();
$query = new RootQuery();
$client = new Hashnode('https://some-alternative-endpoint.hashnode.com', [
'Authorization' => 'my-api-key-goes-here'
]);
$query->selectStoriesFeed((new RootStoriesFeedArgument())->setType('NEW'))
->selectTitle()
->selectDateAdded()
->selectAuthor((new AuthorArgument()))
->selectUsername();
$results = $client->runQuery($query->getQuery())->getData();