API Authentication
The NiceNIC API uses API secret to authenticate requests. You can view 및 manage 귀하의 API Secret in the 관리 패널.
We strongly recommend that you keep 귀하의 API secret secure, do not share 귀하의 secrets in public areas such as GitHub, client code, etc. You can always reset 귀하의 API Secret by 관리 패널.
Authentication to the API is done using the HTTP Auth또는ization header, w여기 you need to specify 귀하의 사용자 이름 및 API secret, separated by a colon.
전체 API requests must be made over HTTP. API requests without authentication will also fail.
https://api.nicenic.net/v2/
Host: api.nicenic.net
Authorization: username:api_secret
Content-Type: application/json
Authorization: username:api_secret
Content-Type: application/json
### Response format
```json
{
"code": 0,
"msg" : "success",
"data" : {} // Specific data
}






