PochtaSdk 0.2.6
.NET 6.0
This package targets .NET 6.0. The package is compatible with this framework or higher.
.NET Framework 4.6.2
This package targets .NET Framework 4.6.2. The package is compatible with this framework or higher.
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package PochtaSdk --version 0.2.6
NuGet\Install-Package PochtaSdk -Version 0.2.6
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="PochtaSdk" Version="0.2.6" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add PochtaSdk --version 0.2.6
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: PochtaSdk, 0.2.6"
#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 PochtaSdk as a Cake Addin #addin nuget:?package=PochtaSdk&version=0.2.6 // Install PochtaSdk as a Cake Tool #tool nuget:?package=PochtaSdk&version=0.2.6
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Pochta SDK
Pochta.ru REST API client with tracing support.
Welcome
This is an early beta version that covers only very basic API features.
Getting started
- Add the Nuget package: https://www.nuget.org/packages/PochtaSdk
- Use
TariffClient
class to calculate delivery tariffs and terms - Use
OtpravkaClient
class to register packages (requires authentication)
Sample usage
Try online: https://dotnetfiddle.net/HsS50y
var client = new TariffClient();
// optional: trace API calls to the console
// client.Tracer = Console.WriteLine;
// calculate tariff and display as plain text
var text = client.CalculateTariff(ResponseFormat.Text, new TariffRequest
{
Object = ObjectType.WrapperRegular,
FromPostCode = 344038,
ToPostCode = 115162,
Weight = 100,
Date = DateTime.Today,
Time = DateTime.Now.TimeOfDay,
});
// display server's response
Console.WriteLine(text);
Trace log
A typical trace log looks like this:
// Calculate
-> GET https://tariff.pochta.ru/v2/calculate/tariff?json=&object=3000&from=344038&to=115162&weight=100&closed=1&date=2022-09-26T10:37:58%2b03:00&time=0223
headers: {
X-ApiClientName = restub v0.3.6.25927
X-ApiMethodName = Calculate
Accept = application/json, text/json, text/x-json, text/javascript, application/xml, text/xml
}
<- OK 200 (OK) https://tariff.pochta.ru/v2/calculate/tariff?json=&object=3000&from=344038&to=115162&weight=100&closed=1&date=2022-09-26T10:37:58%2b03:00&time=0223
timings: {
started: 2022-09-26 10:37:58
elapsed: 0:00:00.703
}
headers: {
Connection = keep-alive
Access-Control-Allow-Origin = *
Content-Length = 921
Content-Type = application/json;charset=utf-8
Date = Mon, 26 Sep 2022 07:37:58 GMT
Server = nginx
}
body: {
"version_api": 2,
"version": "2.14.1.675",
"caption": "Расчет тарифов",
"id": 3000,
"name": "Бандероль простая",
"mailtype": 3,
"mailctg": 0,
"directctg": 1,
"weight": 100,
"date": 20220926,
"time": 22300,
"date-first": 20220101,
"postoffice": [
{
"index": 344038,
"tp": 1,
"type": 3,
"typei": 1,
"name": "РОСТОВ-НА-ДОНУ 38",
"regionid": 61,
"regiono": 60701000001,
"region-main": 1,
"area-main": 1,
"placeid": 39771,
"placeo": 60701000001,
"parent": 344999,
"root": 344700,
"courier": 344880,
"pvz": 1,
"item-check-view": 1,
"move": 1,
"weight-max": 20000,
"pack-max": 99,
"box": 344038
}
],
"transtype": 1,
"transname": "наземно",
"items": [
{
"id": "3173",
"name": "Пересылка простой бандероли",
"serviceon": [
110,
11
],
"serviceoff": [
53,
57
],
"tariff": {
"val": 4200,
"valnds": 5040,
"valmark": 4200
}
}
],
"ground": {
"val": 4200,
"valnds": 5040,
"valmark": 4200
},
"paymark": 4200,
"pay": 4200,
"paynds": 5040,
"ndsrate": 20,
"nds": 840,
"place": "C5-r00-7"
}
PochtaSdk versioning
The project uses Nerdbank.GitVersioning tool to manage versions.
Each library build can be traced back to the original git commit.
Preparing and publishing a new release
- Make sure that
nbgv
dotnet CLI tool is installed and is up to date - Run
nbgv prepare-release
to create a stable branch for the upcoming release, i.e. release/v1.0 - Switch to the release branch:
git checkout release/v1.0
- Execute unit tests, update the README, release notes in csproj file, etc. Commit and push your changes.
- Run
dotnet pack -c Release
and check that it builds Nuget packages with the right version number. - Run
nbgv tag release/v1.0
to tag the last commit on the release branch with your current version number, i.e. v1.0.7. - Push tags as suggested by nbgv tool:
git push origin v1.0.7
- Go to github project page and create a release out of the last tag v1.0.7.
- Verify that github workflow for publishing the nuget package has completed.
- Switch back to master and merge the release branch.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. 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 Framework | net462 is compatible. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
0.18.14 | 176 | 9/18/2023 |
0.18.8 | 235 | 3/1/2023 |
0.17.8 | 364 | 11/29/2022 |
0.16.7 | 337 | 11/26/2022 |
0.15.12 | 325 | 11/16/2022 |
0.14.6 | 420 | 11/2/2022 |
0.13.8 | 366 | 11/1/2022 |
0.12.6 | 397 | 10/28/2022 |
0.11.7 | 380 | 10/27/2022 |
0.10.12 | 389 | 10/26/2022 |
0.9.16 | 409 | 10/24/2022 |
0.8.22 | 413 | 10/20/2022 |
0.7.18 | 394 | 10/16/2022 |
0.6.7 | 426 | 10/8/2022 |
0.5.10 | 392 | 10/6/2022 |
0.4.14 | 397 | 10/5/2022 |
0.3.4 | 397 | 10/3/2022 |
0.2.6 | 426 | 9/29/2022 |
0.1.14 | 383 | 9/29/2022 |
0.0.6 | 446 | 9/26/2022 |
Initial beta release.