Skip to content

The Argent Squire .NET client for the Blizzard World of Warcraft Community Web APIs

License

Notifications You must be signed in to change notification settings

willwolfram18/warcraft

 
 

Repository files navigation

Argent Pony Warcraft Client

The Argent Pony Warcraft Client is a .NET client for the Blizzard World of Warcraft APIs. It lets .NET applications easily access information about World of Warcraft characters, guilds, items, spells, and more. It is a .NET Standard 2.0 library, which means it supports a broad range of platforms, including .NET Core 2.0+ and .NET Framework 4.6.1+.

NuGet version CircleCI

Prerequisites

All users of the Blizzard World of Warcraft Game Data and Profile APIs must have a Battle.net account and a client ID. Follow Blizzard's Getting Started instructions.

Installing via NuGet

You can install the ArgentPonyWarcraftClient package from the NuGet Package Manager in Visual Studio or by running the following command from the Package Manager Console:

Install-Package ArgentPonyWarcraftClient

Using the Argent Pony Warcraft Client

Assuming you're working in C#, add the appropriate using statement to reference the library:

using ArgentPonyWarcraftClient;

Instantiate a WarcraftClient with the the client ID and client secret that you registered for in the Prerequisites step. For simplicity, these values are stored in the source code in the example below. You should instead use the configuration API for your .NET platform to store the key securely. For example, ASP.NET Core developers should read Configuration in ASP.NET Core.

string clientId = "MY-CLIENT-ID-GOES-HERE";
string clientSecret = "MY-CLIENT-SECRET-GOES-HERE";
var warcraftClient = new WarcraftClient(clientId, clientSecret);

You can optionally specify the region and locale to use when calling the WarcraftClient constructor. If you omit these parameters, it will default to Region.US and "Locale.en_US". Each method on WarcraftClient also has an overload that allows you to override these default values for the current call.

var warcraftClient = new WarcraftClient(clientId, clientSecret, Region.US, "Locale.en_US");

Once you have your WarcraftClient instance, you can start asking for data. All methods are asynchronous. Here's an example for retrieving a character:

RequestResult<CharacterProfileSummary> result = await warcraftClient.GetCharacterProfileSummaryAsync("norgannon", "drinian", "profile-us");

This will retrieve the summary for a character named Drinian from the realm Norgannon.

Each request is wrapped in the RequestResult<T> class. Which has the following properties.

  • Value (The generic type argument)
  • Error (RequestError class)
    • Code (The HTTP status code)
    • Type (The HTTP status code description)
    • Detail (The details of why the request failed)
  • Success (bool)

A proper method call could look like this.

RequestResult<CharacterProfileSummary> result = await warcraftClient.GetCharacterProfileSummaryAsync("norgannon", "drinian", "profile-us");

if (result.Success)
{
    CharacterProfileSummary character = result.Value;
    Console.WriteLine("Character Name: " + character.Name);
    Console.WriteLine("Character Level: " + character.Level);
}
else
{
    RequestError error = result.Error;
    Console.WriteLine("HTTP Status Code: " + error.Code);
    Console.WriteLine("HTTP Status Description: " + error.Type);
    Console.WriteLine("Details: " + error.Detail);
}

Take a look at the ArgentPonyWarcraftClient.Tests project and the Blizzard World of Warcraft Game Data and Profile APIs documentation to learn more about what else you can do.

About

The Argent Squire .NET client for the Blizzard World of Warcraft Community Web APIs

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C# 98.8%
  • Shell 1.2%