NubankClient 0.4.0
dotnet add package NubankClient --version 0.4.0
NuGet\Install-Package NubankClient -Version 0.4.0
<PackageReference Include="NubankClient" Version="0.4.0" />
paket add NubankClient --version 0.4.0
#r "nuget: NubankClient, 0.4.0"
// Install NubankClient as a Cake Addin
#addin nuget:?package=NubankClient&version=0.4.0
// Install NubankClient as a Cake Tool
#tool nuget:?package=NubankClient&version=0.4.0
Nubank .Net Client
Installation
This package is available through Nuget Packages: https://www.nuget.org/packages/NubankClient
Nuget
Install-Package NubankClient
.NET CLI
dotnet add package NubankClient
Usage
Login (Login is required for any other request)
var nubankClient = new Nubank(login, password);
await nubankClient.LoginAsync();
Device Authorization
Login in most part of devices is asking for authorization through QR Code, Nubank Client returns a response that indicate if device authorization is needed when login is requested. See an example:
var nubankClient = new Nubank(login, password);
var loginResponse = await nubankClient.LoginAsync();
if (loginResponse.NeedsDeviceAuthorization) {
var qrcode = loginResponse.GetQrCodeAsAscii();
// Here you can get qrcode as bitmap too.
// var qrcode = loginResponse.GetQrCodeAsBitmap();
// Now the user needs to scan QRCode using your device.
// The user needs to access nubank in his smartphone and navigate to menu: Nu(Seu Nome) > Perfil > Acesso pelo site.
// After user scan QRCode:
await nubankClient.AutenticateWithQrCodeAsync(loginResponse.Code);
}
Get Events (Credit Card Transactions, Bill Payments, etc.)
var events = await nubankClient.GetEventsAsync();
Note: The Nubank API returns amount of events without decimal separators, to get a decimal to represent the amount with decimal separators use CurrencyAmount property of Event Class.
Get Savings (NuConta Bank Account Statment)
var savings = await nubankClient.GetSavingsAsync();
Product | Versions |
---|---|
.NET | net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows net7.0 net7.0-android net7.0-ios net7.0-maccatalyst net7.0-macos net7.0-tvos net7.0-windows |
.NET Core | netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1 |
.NET Standard | netstandard2.0 netstandard2.1 |
.NET Framework | net461 net462 net463 net47 net471 net472 net48 |
MonoAndroid | monoandroid |
MonoMac | monomac |
MonoTouch | monotouch |
Tizen | tizen40 tizen60 |
Xamarin.iOS | xamarinios |
Xamarin.Mac | xamarinmac |
Xamarin.TVOS | xamarintvos |
Xamarin.WatchOS | xamarinwatchos |
-
.NETStandard 2.0
- QRCoder (>= 1.3.5)
- RestSharp (>= 106.6.7)
- RestSharp.Newtonsoft.Json (>= 1.5.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
- Added Nuconta support