forked from digipost/digipost-api-client-dotnet
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
31 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,32 @@ | ||
# Unofficial .NET client library for Digipost API V8 | ||
# Unofficial .NET Client Library for Digipost API V8 | ||
|
||
Forked from https://github.com/digipost/digipost-api-client-dotnet | ||
This library is an unofficial .NET client for the Digipost API V8. It's a fork of the official [Digipost API client for .NET](https://github.com/digipost/digipost-api-client-dotnet). | ||
|
||
## Getting Started | ||
|
||
Follow these instructions to set up and send a message using the Digipost API from your .NET application. | ||
|
||
### Prerequisites | ||
|
||
- .NET SDK installed on your machine. | ||
- An IDE or code editor (e.g., Rider, Visual Studio). | ||
- A Digipost account with the necessary credentials (brokerId, certificatePath, certificatePassword, and digipostAddress). | ||
|
||
### Getting started | ||
|
||
```sh | ||
git clone https://github.com/fintermobilityas/digipost-api-client-dotnet | ||
cd digipost-api-client-dotnet | ||
rider . | ||
``` | ||
|
||
### Demo | ||
|
||
#### Edit the Program File: | ||
Open the `Program.cs` file located in the `Digipost.Api.Demo` directory. | ||
|
||
#### Set Up Your Credentials: | ||
Update the `brokerId`, `certificatePath`, `certificatePassword`, and `digipostAddress` in `Program.cs` with the values you received from your Digipost onboarding. | ||
|
||
#### Usage | ||
Follow the examples in the `Digipost.Api.Demo` project to learn how to send messages and perform other tasks using the Digipost API. |