1. Go to this page and download the library: Download aerni/apple-news 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/ */
aerni / apple-news example snippets
return [
/*
|--------------------------------------------------------------------------
| Apple News API
|--------------------------------------------------------------------------
|
| The Apple News API credentials of your channel.
|
*/
'id' => env('APPLE_NEWS_CHANNEL_ID'),
'key' => env('APPLE_NEWS_KEY'),
'secret' => env('APPLE_NEWS_SECRET'),
/*
|--------------------------------------------------------------------------
| Site
|--------------------------------------------------------------------------
|
| The handle of the site you want to use to publish on Apple News.
|
*/
'site' => 'default',
/*
|--------------------------------------------------------------------------
| Collections
|--------------------------------------------------------------------------
|
| The handles of the collections whose entries you want to publish.
|
*/
'collections' => [
// 'articles',
],
/*
|--------------------------------------------------------------------------
| Templates
|--------------------------------------------------------------------------
|
| The templates for your Apple News articles.
|
*/
'templates' => [
// \App\AppleNews\DefaultTemplate::class,
],
];