.NET wrapper written for automating the Identory Anti-Detect browser.
This library is quite small and has been built with simplicity in mind.
By following the official documentation figuring things out should be rather easy.
If you happen to run into any problems or find something confusing, feel free to open up an issue on GitHub.
var identory = await Identory.Identory.StartIdentory("7d1a45df6dddf3b23c9d000494ffd1a8aee86eda");
var identoryProfile = new Identory.Models.Profile.DesktopProfile("test");
identoryProfile.Platform = Identory.Models.Enum.Platform.Win32;
identoryProfile.OnStartUp = Identory.Models.Enum.StartupAction.DoNothing;
identory.Profile.UpsertProfile(identoryProfile).Result.Match(profile =>
{
global::System.Console.WriteLine(profile.ProfileId);
identory.Profile.StartProfile(profile.ProfileId).Result.Match(
session =>
{
global::System.Console.WriteLine(session.BrowserWSEndpoint);
},
fail =>
{
global::System.Console.WriteLine(fail.Message);
});
},
error =>
{
global::System.Console.WriteLine(error.Message);
});Distributed under the MIT License. See LICENSE.txt for more information.
