Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hkjang/naver-ncloud-apis
https://github.com/hkjang/naver-ncloud-apis
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/hkjang/naver-ncloud-apis
- Owner: hkjang
- License: mit
- Created: 2020-11-23T05:00:55.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2020-11-23T07:30:17.000Z (about 4 years ago)
- Last Synced: 2024-11-09T07:13:10.713Z (2 months ago)
- Language: JavaScript
- 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
# naver-ncloud-apis
## 설치
### For [Node.js](https://nodejs.org/)
#### npm
설치는 npm 또는 yarn 을 이용해서 아래의 명령어로 설치할 수 있습니다.
```
npm install naver-ncloud-apis --save
```## 시작하기
### ncloud-sdk 를 사용하기 위해서는 먼저 인증키를 생성해야 합니다.
- 인증키는 [포털](https://www.ncloud.com)의 마이페이지 > 계정관리 > [인증키 관리](https://www.ncloud.com/mypage/manage/authkey) 메뉴에서 "신규 API 인증키 생성"을 통해서 Access Key ID, Secret Key 를 생성합니다.
- 이미 생성된 인증키가 있을 경우 [포털](https://www.ncloud.com)의 마이페이지 > 계정관리 > [인증키 관리](https://www.ncloud.com/mypage/manage/authkey) 메뉴에서 확인할 수 있습니다.
- sub account 의 경우, [Console](https://console.ncloud.com)의 [Sub Account](https://console.ncloud.com/iam/dashboard) > Sub Accounts > 서브 계정 상세 메뉴에서 "API Key"탭에서 생성한 Access Key ID, Secret Key 를 사용할 수도 있습니다.### 생성된 인증키 정보를 저장합니다.
- Mac/Linux 의 경우 ~/.ncloud/configure 에, Windows 의 경우 C:\Users\USERNAME\\.ncloud\configure 에 인증키 정보를 저장합니다.
- configure 파일은 [NCLOUD CLI](http://docs.ncloud.com/ko/tool/tool-3-1.html) 를 이용하여 생성할 수도 있습니다.
- configure example```
ncloud_access_key_id = xxxxxxxxxxxxx
ncloud_secret_access_key = xxxxxxxxxxxxxxxxxxxxxxxxxxxxx
```### Usage example
- Node.js
```jsconst ncloud = require('naver-ncloud-apis')
ncloud({
method: 'GET',
action: 'getZoneList',
basePath: '/server/v2/',
}).then(response => response.data)
.catch(error => error.response.data);
```