PHP code example of nhannguyen09cntt / php-discourse-sdk
1. Go to this page and download the library: Download nhannguyen09cntt/php-discourse-sdk 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/ */
nhannguyen09cntt / php-discourse-sdk example snippets
composer
{
""php": "^7.2",
"guzzlehttp/guzzle": "^7.0",
"nhannguyen09cntt/php-discourse-sdk": "^1.0"
}
}
namespace xxxx;
use Discourse\Discourse;
...
$discourse = new Discourse();
$response = $discourse->get('/c/11.json', ['page' => 1]);
$body = $response->getDecodedBody();
$topics = $body['topic_list']['topics'];
...