PHP code example of emergentmethods / asknews-php-sdk
1. Go to this page and download the library: Download emergentmethods/asknews-php-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/ */
emergentmethods / asknews-php-sdk example snippets
/ Configure sdk credentials
$config = new AskNews\Configuration([
'clientId' => 'YOUR_ASKNEWS_CLIENT_ID',
'clientSecret' => 'YOUR_ASKNEWS_CLIENT_SECRET',
'scopes' => ['news', 'chat', 'stories', 'analytics']
]);
$apiInstance = new AskNews\Api\AlertsApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client(),
$config
);
$create_alert_request = new \AskNews\Model\CreateAlertRequest(); // \AskNews\Model\CreateAlertRequest
try {
$result = $apiInstance->createAlert($create_alert_request);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling AlertsApi->createAlert: ', $e->getMessage(), PHP_EOL;
}