PagSeguro.DotNet.Sdk
3.4.0
dotnet add package PagSeguro.DotNet.Sdk --version 3.4.0
NuGet\Install-Package PagSeguro.DotNet.Sdk -Version 3.4.0
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="PagSeguro.DotNet.Sdk" Version="3.4.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add PagSeguro.DotNet.Sdk --version 3.4.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: PagSeguro.DotNet.Sdk, 3.4.0"
#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 PagSeguro.DotNet.Sdk as a Cake Addin #addin nuget:?package=PagSeguro.DotNet.Sdk&version=3.4.0 // Install PagSeguro.DotNet.Sdk as a Cake Tool #tool nuget:?package=PagSeguro.DotNet.Sdk&version=3.4.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Client moderno para APIs PagSeguro
Install
- Package Manager Console (Visual Studio)
Install-Package PagSeguro.DotNet.Sdk
- dotnet cli
dotnet add package PagSeguro.DotNet.Sdk
Como usar
ASP.NET
No ASP.NET, use o middleware para injetar uma instância do IPagseguroClient
//configuracao credenciais pagseguro
builder.Services.AddPagSeguro(options =>
{
options.ClientId = "8815a5e2-616b-4754-a6d1-40d92b71674c";
options.ClientSecret = "45e5a4de-b8eb-4b78-9ce6-fad416b1953c";
options.Token = "BCABE5E7AA9D43BCBBB76E3C45C1567A";
options.Environment = PagSeguroEnvironment.Sandbox;
});
ConsoleApp
Crie uma instância de PagSeguroClient, caso queira usar o ambiente de Produção, o Environment pode ser omitido.
var client = new PagSeguroClient(new ClientSettings
{
Environment = PagSeguroEnvironment.Sandbox,
Token = "<SEU_TOKEN>"
});
Use as fluent interfaces para manipular as APIs, para opções disponíveis veja a Wiki.
var creditCardOrder = await client
.ForOrder()
.WithReferenceId("ref-id")
.WithNotificationUrl("https://my.url")
.WithCreditCard()
.AddCharge(new ChargeByCreditCardWriteDto())
.CreateAsync();
Unit Testing
Compatível com Mocking frameworks como NSubstitute ou Moq. Devido ao design usando fluent interfaces, proporciona alta testabilidade.
[Fact]
public async Task ForOrder_GetByIdAsync_GetByIdAsyncIsCalledWithId()
{
var clientMock = Substitute.For<PagSeguroClient>(new ClientSettings());
string orderId = "order-id";
await clientMock
.ForOrder()
.GetByIdAsync(orderId);
await clientMock
.Received(1)
.ForOrder()
.GetByIdAsync(orderId);
}
Product | Versions 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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net8.0
- AutoMapper.Extensions.Microsoft.DependencyInjection (>= 12.0.1)
- Flurl (>= 3.0.7)
- Flurl.Http (>= 3.2.4)
- MethodDecorator.Fody (>= 1.1.1)
- Microsoft.Extensions.DependencyInjection (>= 8.0.0)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 8.0.1)
- Newtonsoft.Json (>= 13.0.3)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.