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
- Host: GitHub
- URL: https://github.com/wangta69/news
- Owner: wangta69
- License: mit
- Created: 2018-02-07T10:01:52.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-07-17T02:09:47.000Z (almost 7 years ago)
- Last Synced: 2025-02-05T05:29:10.180Z (4 months ago)
- Language: PHP
- Size: 5.86 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# news API
## Installation
```
composer require wangta69/newscomposer 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'),
],
```