MapleStory OpenAPI JavaScript Library
This JavaScript library enables the use of the MapleStory OpenAPI of Nexon.
Packages written in other languages can be found HERE.
(한국어 문서는 이쪽입니다.)
Installation
Install the latest version of the JavaScript/TypeScript library in your npm project:
npm install maplestory-openapi@2.3.1
Usage
API Key
Before using the library, register your application and obtain an api key from the Nexon Open API Console.
Supports
- CommonJS, ESM Support: The library supports both CommonJS and ESM usage.
const {MapleStoryApi, MapleStoryApiError} = require('maplestory-openapi');
import {MapleStoryApi, MapleStoryApiError} from 'maplestory-openapi';
- TypeScript Support: TypeScript is fully supported. Type definitions are included.
Sample Code
const {MapleStoryApi, MapleStoryApiError} = require('maplestory-openapi');
const apiKey = '{Your API Key}';
const api = new MapleStoryApi(apiKey);
api.getCubeHistory(1000, {
year: 2023,
month: 10,
day: 15
})
.then((dto) => {
const {count, cubeHistory, nextCursor} = dto;
console.log('You used ' + count + ' cubes.');
})
.catch((e) => {
if (e instanceof MapleStoryApiError) {
} else {
}
console.log(e);
});
Exception Handling
Handle MapleStoryApiError
to safely make calls, ensuring that specific Status defined in the MapleStory OpenAPI Guide are not encountered.
While MapleStoryApi
is designed to prevent the occurrence of certain Status, exceptions may arise due to developer mistakes.
Therefore, it's recommended to use MapleStoryApiError
for exception handling based on the MapleStoryApiErrorCode
list described in the table below.
ErrorCode | Description |
---|
OPENAPI00001 | Internal server error |
OPENAPI00002 | Access denied |
OPENAPI00003 | Invalid identifier |
OPENAPI00004 | Request format error (incorrect parameter input) |
OPENAPI00005 | Invalid api key |
OPENAPI00006 | Invalid api path |
OPENAPI00007 | Request allowance (Rate Limit) exceeded |