Skip to content

Releases: DolbyIO/dolbyio-rest-apis-client-dotnet

2.0.0

20 Aug 21:03
daeacb4
Compare
Choose a tag to compare
  • Remove Communications APIs
  • Update Streaming APIs

1.3.1

19 Jun 22:10
d26c656
Compare
Choose a tag to compare

What's Changed

using DolbyIO.Rest;
using DolbyIO.Rest.Models;

const string APP_KEY = "app_key";
const string APP_SECRET = "app_secret";
const string CONFERENCE_ID = "conf_id";

using DolbyIOClient client = new DolbyIOClient();

JwtToken apiToken = await client.Authentication.GetApiAccessTokenAsync(
    APP_KEY,
    APP_SECRET,
    3600,
    new string[] { "comms:*" }
);

var result = await client.Communications.Conference
    .ParticipantsAsync(apiToken, CONFERENCE_ID);

Full Changelog: 1.3.0...1.3.1

1.3.0

07 Jun 19:21
3269a27
Compare
Choose a tag to compare

What's Changed

  • Authentication token max duration is 24 hours.
  • Add new Common Auth v2 APIs:
    • GetApiAccessTokenAsync now accepts a list of scopes - documentation
    • GetClientAccessTokenAsync in the namespace DolbyIO.Rest.Communications.Authentication, is now deprecated and will be removed in the next release.
    • GetClientAccessTokenV2Async was added to request a client access token - documentation

Full Changelog: 1.2.3...1.3.0

1.2.3

29 Mar 17:22
d63bbc2
Compare
Choose a tag to compare

What's Changed

  • Add streamingAPIUsage to Monitor API

Full Changelog: 1.2.2...1.2.3

1.2.2

08 Mar 20:28
2ba8c53
Compare
Choose a tag to compare

What's Changed

Full Changelog: 1.2.1...1.2.2

1.2.1

18 Feb 02:27
dc394dc
Compare
Choose a tag to compare

What's Changed

  • Add the region as option when creating a conference

Full Changelog: 1.2.0...1.2.1

1.2.0

01 Feb 16:02
90773ff
Compare
Choose a tag to compare

What's Changed

  • Add SubscribeToken APIs in Real-time Streaming APIs.
  • Breaking changes: some classes in Real-time Streaming APIs were renamed and the code was simplified.

Full Changelog: 1.1.0...1.2.0

1.1.0

31 Jan 16:22
1cf3ce8
Compare
Choose a tag to compare

What's Changed

  • Improve the Enhance and Mastering APIs by allowing to provide a job description object to start a job instead of a JSON payload.
  • Add Stream and PublishToken APIs for Real-time Streaming APIs.

Full Changelog: 1.0.0...1.1.0

1.0.0

24 Jan 22:31
41de6f9
Compare
Choose a tag to compare

Initial release with REST API support for Communications API, Media APIs and some Streaming APIs.