ThreeCXApi 0.1.1

dotnet add package ThreeCXApi --version 0.1.1
                    
NuGet\Install-Package ThreeCXApi -Version 0.1.1
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="ThreeCXApi" Version="0.1.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="ThreeCXApi" Version="0.1.1" />
                    
Directory.Packages.props
<PackageReference Include="ThreeCXApi" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add ThreeCXApi --version 0.1.1
                    
#r "nuget: ThreeCXApi, 0.1.1"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package ThreeCXApi@0.1.1
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=ThreeCXApi&version=0.1.1
                    
Install as a Cake Addin
#tool nuget:?package=ThreeCXApi&version=0.1.1
                    
Install as a Cake Tool

ThreeCXApi

A .NET library for seamless integration with the 3CX API, including OAuth2 authentication and API communication. This library simplifies interactions with 3CX instances, such as retrieving configurations and managing tokens.

🚀 Features

  • OAuth2 Token Management: Automatic authentication and token caching.
  • HttpClient Integration: Preconfigured services for accessing the 3CX API.
  • Modular Design: Easily integrates into existing .NET projects.
  • Configuration-Based Setup: Quickly set up using app configuration.

📦 Installation

You can install the package via NuGet:

dotnet add package ThreeCXApi

🛠️ Configuration

Add the following configuration section to your appsettings.json:

{
  "3CX": {
    "BaseAddress": "https://your-3cx-instance.com",
    "ClientId": "your-client-id",
    "ClientSecret": "your-client-secret",
    "GrantType": "client_credentials"
  }
}

In your Program.cs or Startup.cs, register the service:

using ThreeCXApi;

var builder = WebApplication.CreateBuilder(args);

builder.Services.AddThreeCXApi();

var app = builder.Build();
app.Run();

🌟 Contributing

Feel free to submit pull requests or open issues to improve the library.

🛠 Support

If you encounter any issues or have questions, feel free to open an issue.

📚 Resources

📜 License

This project is licensed under the MIT License.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.1.1 175 11/28/2024
0.1.0 120 11/28/2024