Skip to content

Instantly share code, notes, and snippets.

@jskopek
Last active April 22, 2018 03:59
Show Gist options
  • Save jskopek/0c8acabc75b8c2e638942dffb1d571f3 to your computer and use it in GitHub Desktop.
Save jskopek/0c8acabc75b8c2e638942dffb1d571f3 to your computer and use it in GitHub Desktop.
.NET Core Azure Media Services SDK Example
using Azure.MediaServices.Core;
using System;
namespace AzureMediaTool
{
class Program
{
static void Main(string[] args)
{
string tenantDomain = "--";
string restApiUrl = "--";
string clientId = "--";
string clientSecret = "--";
// initialize the azure media services client
AzureMediaServiceClient client = new AzureMediaServiceClient(clientId, clientSecret, restApiUrl, tenantDomain);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment