• Stars
    star
    30
  • Rank 811,243 (Top 17 %)
  • Language
    C#
  • License
    MIT License
  • Created over 7 years ago
  • Updated 4 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Ingenico Connect .NET Server SDK

Ingenico Connect .NET SDK

This SDK has been rebranded to Worldline. As part of the rebranding the SDK has moved to https://github.com/Worldline-Global-Collect/connect-sdk-dotnet.

Introduction

The .NET SDK helps you to communicate with the Ingenico Connect Server API. Its primary features are:

  • convenient C# wrapper around the API calls and responses
    • marshalls C# request objects to HTTP requests
    • unmarshalls HTTP responses to C# response objects or C# exceptions
  • handling of all the details concerning authentication
  • handling of required meta data

Its use is demonstrated by an example for each possible call. The examples execute a call using the provided API keys.

See the Ingenico Connect Developer Hub for more information on how to use the SDK.

Structure of this repository

This repository consists out of four main components:

  1. The source code of the SDK itself: /connect-sdk-dotnet
  2. The source code of the SDK unit tests: /connect-sdk-dotnet-tests
  3. The source code of the example integration tests: /connect-sdk-dotnet-it
  4. The source code of the example calls: /connect-sdk-dotnet-examples

Requirements

The .NET SDK supports .NET Framework 4.5 and .NET Standard 2.0 and 2.1.

.NET Framework 4.5

When using .NET Framework 4.5, the following packages are rquired:

In addition, the following references are required, which are part of the .NET Framework:

  • System.Configuration
  • System.Net.Http

.NET Standard 2.0 and 2.1

When using .NET Standard 2.0 or 2.1, the following packages are rquired:

Installation

Release

Package Manager

To install the latest .NET SDK release, run the following command in the Package Manager Console (Tools -> NuGet Package Manager -> Package Manager Console) in Visual Studio:

PM> Install-Package connect-sdk-dotnet

.NET CLI

To install the latest .NET SDK release, run the following command:

dotnet add package connect-sdk-dotnet

Release (Strong-Named)

To install the latest .NET SDK release as a Strong-Named assembly, follow the instructions above but use connect-sdk-dotnet.StrongName instead of connect-sdk-dotnet.

Building the repository

This repository uses Visual Studio 2019 to build. Open connect-sdk-dotnet.sln in Visual Studio, and click build.

More Repositories

1

connect-sdk-php

Ingenico Connect PHP Server SDK
PHP
39
star
2

connect-sdk-client-android

Ingenico Connect Android Client SDK
Java
34
star
3

connect-sdk-java

Ingenico Connect Java Server SDK
Java
32
star
4

connect-sdk-client-js

Ingenico Connect JavaScript Client SDK
TypeScript
26
star
5

connect-sdk-client-ios

Ingenico Connect iOS Objective-C Client SDK
Objective-C
17
star
6

connect-sdk-nodejs

Ingenico Connect NodeJS Server SDK
TypeScript
13
star
7

connect-sdk-client-js-example

Ingenico Connect JavaScript Client SDK Example
HTML
8
star
8

connect-sdk-go

Ingenico Connect Go Server SDK
Go
8
star
9

connect-sdk-python3

Ingenico Connect Python 3.x Server SDK
Python
6
star
10

connect-sdk-nodejs-example

Ingenico Connect NodeJS Server SDK Example
Marko
5
star
11

connect-sdk-ruby

Ingenico Connect Ruby SDK
Ruby
5
star
12

connect-sdk-client-swift

Ingenico Connect iOS Swift Client SDK
Swift
5
star
13

connect-extension-magento2

Ingenico Connect based Shopping Cart Extension for Magento 2.x
PHP
4
star
14

connect-sdk-client-ios-example

Ingenico Connect iOS Objective-C Client SDK Example
Objective-C
4
star
15

connect-extension-salesforce-commerce-cloud-sfra

Ingenico Connect based Shopping Cart Extension for Salesforce Commerce Cloud Storefront Reference Architecture
JavaScript
3
star
16

connect-extension-magento1

Ingenico Connect based Shopping Cart Extension for Magento 1.x
PHP
3
star
17

connect-sdk-python2

Ingenico Connect Python 2.7 Server SDK
Python
2
star
18

connect-extension-magento2-graphql

GraphQL extension to our Magento 2 Shopping Cart Extension
PHP
2
star
19

connect-extension-salesforce-commerce-cloud

Ingenico Connect based Shopping Cart Extension for Salesforce Commerce Cloud using siteGenesis
JavaScript
2
star
20

connect-sdk-client-swift-example

Ingenico Connect iOS Swift Client SDK Example
Swift
1
star
21

connect-sdk-client-android-example-kotlin

Ingenico Connect Android Client SDK Kotlin Example
Kotlin
1
star