MercadoPagoCore 1.0.5

There is a newer version of this package available.
See the version list below for details.
dotnet add package MercadoPagoCore --version 1.0.5
NuGet\Install-Package MercadoPagoCore -Version 1.0.5
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="MercadoPagoCore" Version="1.0.5" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add MercadoPagoCore --version 1.0.5
#r "nuget: MercadoPagoCore, 1.0.5"
#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 MercadoPagoCore as a Cake Addin
#addin nuget:?package=MercadoPagoCore&version=1.0.5

// Install MercadoPagoCore as a Cake Tool
#tool nuget:?package=MercadoPagoCore&version=1.0.5

MercadoPagoCore - Repository

This library provides developers with a simple set of bindings to help you integrate Mercado Pago API to a website and start receiving payments.

Build Status

.NET Core

MercadoPagoCore

πŸš€ Package information

latest version downloads APM

πŸ’‘ Requirements

.NETCoreApp >= 3.1

πŸ“² Installation

Using our nuget package

First time using Mercado Pago? Create your Mercado Pago account, if you don’t have one already.

Using Package Manager

PM> Install-Package MercadoPagoCore -Version 1.0.4

Using .Net CLI

> dotnet add package MercadoPagoCore --version 1.0.4

Using Paket CLI

> paket add MercadoPagoCore --version 1.0.4

Using Package Reference

<PackageReference Include="MercadoPagoCore" Version="1.0.4" />

Copy the access_token in the credentials section of the page and replace YOUR_ACCESS_TOKEN with it.

That's it! MercadoPagoCore SDK has been successfully installed.

🌟 Getting Started

Simple usage looks like:

using MercadoPagoCore;
using MercadoPagoCore.DataStructures.Payment;
using MercadoPagoCore.Resources;

MercadoPagoSDK.AccessToken = "YOUR_ACCESS_TOKEN";

Payment payment = new Payment
{
    TransactionAmount = 50000f,
    Token = "YOUR_CARD_TOKEN"
    Description = "Ergonomic Silk Shirt",
    PaymentMethodId = "YOUR_PAYMENT_METHOD_ID", 
    Installments = 1,
    Payer = new Payer {
        Email = "test.payer@email.com"
    }
};

payment.Save();

Console.WriteLine(payment.Status)

πŸ“š Documentation

Visit our Dev Site for further information regarding:

❀️ Support

If you require technical support, please contact our support team at developers.mercadopago.com

🏻 License

MIT license. Copyright (c) 2020 
For more information, see the LICENSE file.
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  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. 
.NET Core netcoreapp3.1 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on MercadoPagoCore:

Package Downloads
MercadoPagoCore.Extensions.Microsoft.DependencyInjection

The inofficial MercadoPagoCore SDK for ASP.NET core apps

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
5.0.0 1,498 1/16/2021
2.0.0 1,562 11/17/2020
1.0.5 681 11/7/2020
1.0.4 1,357 8/17/2020
1.0.3 469 8/16/2020
1.0.2 454 8/15/2020
1.0.1 908 8/14/2020
1.0.0 514 8/14/2020