chicpro / php-naver-datalab-api
PHP Client for Naver Datalab API
Installs: 9
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
pkg:composer/chicpro/php-naver-datalab-api
Requires
- php: >=7.0.0
- ext-curl: *
This package is not auto-updated.
Last update: 2025-10-12 11:21:21 UTC
README
네이버 데이터랩 API 사용을 위한 PHP Client
MIT licensed.
네이버 데이터랩 통합검색어 트렌드 API
설치
PHP Composer 를 통해 패키지를 설치합니다.
$ composer require chicpro/php-naver-datalab-api
예제
require __DIR__.'/vendor/autoload.php';
use chicpro\DATALAB\SEARCH;
$search = new SEARCH();
$search->setCredential('client id', 'client secret');
$search->setStartDate('2018-07-01');
$search->setEndDate('2018-07-15');
$search->setKeywordGroups('네이버', '네이버, naver');
$search->setKeywordGroups('구글', '구글, google');
$result = $search->sendRequest();
print_r($result);