Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

daraber/adspower-dotnet

Open more actions menu

Repository files navigation

AdsPower Local API .NET 8 Client. For detailed information about the AdsPower API, refer to the official AdsPower Local API Documentation.

Endpoints:

Usage

var client = new LocalApiClient("http://localhost:5000");

var connectionResponse = await client.GetConnectionStatusAsync();
if(!connectionResponse.Success)
{
    Console.WriteLine(connectionResponse.Message);
    return;
}

var profilesResponse = await client.Profile.ListAsync();
if (profilesResponse.Success)
{
    foreach (var profile in profilesResponse.Data.List)
    {
        Console.WriteLine(profile);
    } 
}

About

Unofficial .NET 8 library for the AdsPower Local API

Topics

Resources

Stars

Watchers

Forks

Releases

Packages

Used by

Contributors

Languages

Morty Proxy This is a proxified and sanitized view of the page, visit original site.