Skip to content

hakunamarihuana/Identory

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Identory

About The Project

.NET wrapper written for automating the Identory Anti-Detect browser.

Built With

Getting Started

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.

Simple example that shows creating and starting a profile using the wrapper.

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);
});

License

Distributed under the MIT License. See LICENSE.txt for more information.

Packages

 
 
 

Contributors

Languages