An open API service indexing awesome lists of open source software.

https://github.com/wangta69/news

collect various new from various api
https://github.com/wangta69/news

Last synced: 2 months ago
JSON representation

collect various new from various api

Awesome Lists containing this project

README

        

# news API

## Installation
```
composer require wangta69/news

composer require "wangta69/news @dev"

```

Step 1) Add ServiceProvider to the providers array in `config/app.php`.
```
Pondol\News\NewsServiceProvider::class,
```

.env
```
NAVER_CLIENT_ID=WhatYouGetFromNaver
NAVER_CLIENT_SECRET=WhatYouGetFromNaver
```

config/services.php
```
'naver' => [
'client_id' => env('NAVER_CLIENT_ID'),
'client_secret' => env('NAVER_CLIENT_SECRET'),
],
```