MapleStory.OpenAPI 1.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package MapleStory.OpenAPI --version 1.0.0
NuGet\Install-Package MapleStory.OpenAPI -Version 1.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="MapleStory.OpenAPI" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add MapleStory.OpenAPI --version 1.0.0
#r "nuget: MapleStory.OpenAPI, 1.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install MapleStory.OpenAPI as a Cake Addin
#addin nuget:?package=MapleStory.OpenAPI&version=1.0.0

// Install MapleStory.OpenAPI as a Cake Tool
#tool nuget:?package=MapleStory.OpenAPI&version=1.0.0

MapleStory OpenAPI C# Library

NuGet

This C# library enables the use of the MapleStory OpenAPI provided by Nexon.

Packages written in other languages can be found HERE.

Installation

Install the latest version of the C# library in your NuGet project:

<PackageReference Include="MapleStory.OpenAPI" Version="1.0.0" />

Usage

Sample Code

using MapleStory.OpenAPI;

var apiKey = "{Your API Key}";
var api = new MapleStoryAPI(apiKey);

// run your code
try
{
    var response = await api.GetCubeResult(1000, 2023, 10, 15);

    var count = response.Count;
    var cubeHistories = response.CubeHistories;
    var nextCursor = response.NextCursor;

    Console.WriteLine("You used " + count + " cubes.");
}
// exception handling
catch (MapleStoryAPIException e)
{
    // handle MapleStoryApiException
}
catch (HttpRequestException e)
{
    // handle HttpRequestException
}

Exception Handling

Handle MapleStoryAPIException 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 MapleStoryAPIException for exception handling based on the Status list described in the table below.

Status Message
400 Request format error (incorrect parameter input)
401 Unauthorized service (unsupported service, service type)
403 Unauthorized AccessToken usage
429 AccessToken's request allowance (Rate Limit) exceeded
500 Internal server error
504 Internal server processing timeout
Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.5.0 109 4/9/2024
2.4.1 97 2/21/2024
2.4.0 99 1/26/2024
2.3.2 129 1/9/2024
2.3.1 98 1/4/2024
2.3.0 92 12/31/2023
2.2.0 96 12/27/2023
2.1.1 114 12/24/2023
2.1.0 90 12/23/2023
2.0.0 100 12/14/2023
1.1.0 118 12/3/2023
1.0.1 105 11/28/2023
1.0.0 104 11/18/2023