/Auphonic.NET

A .NET Library for the Auphonic API

Primary LanguageC#Microsoft Public LicenseMS-PL

Auphonic.Net

Auphonic.Net is a .NET Library for the Auphonic API.

Usage

string clientId = "Your Client ID";
string clientSecret = "Your Client Secret";
string username = "Your Username";
string password = "Your Password";

// Initialize Auphonic Client
Auphonic auphonic = new Auphonic(clientId, clientSecret);

// Authenticate with Username and Password
string accessToken = auphonic.Authenticate(username, password);

// Authenticate with Access Token
auphonic.Authenticate(accessToken);

// Retrieve Account Info
Account account = auphonic.GetAccountInfo();