1PasswordConnectSDK 1.0.8
dotnet add package 1PasswordConnectSDK --version 1.0.8
NuGet\Install-Package 1PasswordConnectSDK -Version 1.0.8
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="1PasswordConnectSDK" Version="1.0.8" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add 1PasswordConnectSDK --version 1.0.8
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: 1PasswordConnectSDK, 1.0.8"
#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.
// Install 1PasswordConnectSDK as a Cake Addin #addin nuget:?package=1PasswordConnectSDK&version=1.0.8 // Install 1PasswordConnectSDK as a Cake Tool #tool nuget:?package=1PasswordConnectSDK&version=1.0.8
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
AN UNOFFICIAL 1PASSWORD CONNECT SDK
This project is a WIP. Currently only supports:
- Vaults
- Get All Vaults w/ Search & Filtering
- Get Single Vault
- Items
- Get All Items By Vault w/ Search & Filtering
- Get Sinlge Item
- Create Item
- Delete Item
- Replace Item
- Server
- Health Check
- Heartbeat
To Setup:
Install: Nuget Install
Startup.cs
services.AddOpConnect(
Configuration.GetSection(OpConnectOptions.OpConnect).Get<OpConnectOptions>()
);
appsettings.json
"OpConnect": {
"Token": "<ACCESS_TOKEN>",
"BaseUrl": "http://localhost:8080/"
}
Inject service:
private readonly IOpConnect _opConnect;
public WeatherForecastController(
IOpConnect opConnect
)
{
_opConnect = opConnect;
}
[HttpGet]
public async Task<IEnumerable<WeatherForecast>> Get()
{
var vaults = await opConnect.Vault.GetListAsync();
Console.WriteLine(vaults?[0].Id);
...
}
SCIM Filter builder:
var filter = new FilterBuilder<Item>().Group()
.Field(item => item.Title)
.Eq("test")
.Or()
.Field(item => item.Title)
.Eq("test2")
.GroupEnd()
.And()
.Group()
.Field(item => item.Id)
.Eq("test3")
.Or()
.Field(item => item.Id)
.Eq("test4")
.GroupEnd();
Console.WriteLine(filter.ToString()); // (title eq test or title eq test2) and (id eq test3 or id eq test4)
More documentation to come.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 is compatible. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. 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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net5.0
- Microsoft.Extensions.DependencyInjection (>= 5.0.2)
- Microsoft.Extensions.Http (>= 5.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.