spw 1.1.1
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 spw --version 1.1.1
NuGet\Install-Package spw -Version 1.1.1
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="spw" Version="1.1.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add spw --version 1.1.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: spw, 1.1.1"
#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 spw as a Cake Addin #addin nuget:?package=spw&version=1.1.1 // Install spw as a Cake Tool #tool nuget:?package=spw&version=1.1.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
SpWorldsApiForCS
Это библиотека C# для управлением API SpWorlds. Документация к API тут.
Как начать?
Подключение библиотеки происходит через nuget
nuget
dotnet add package spw --version 1.1.1
Команды
Примечание
Можно использовать асинхронные и синхронные функции
Директива подключения
using spw;
Создание класса
SpWorlds sp = new SpWorlds("id", "token");
Правильный token и id
await sp.IsSpWalletAsync();
//or
sp.IsSpwallet();
Возвращает bool
Получить баланс
await sp.GetBalanceAsync();
//or
sp.GetBalance();
Возвращает int
Получить никнейм по DiscordId
await sp.GetUserAsync("DiscordId");
//or
sp.GetUser("DiscordId");
Возвращает string
Отправить АРы
await sp.SendPaymentAsync(amount, "receiver", "message");
//or
sp.SendPayment(amount, "receiver", "message");
Возвращает bool
Создать ссылку на оплату
await sp.CreatePaymentAsync(amount, "redirectUrl", "webhookUrl", "data");
//or
sp.CreatePayment(amount, "redirectUrl", "webhookUrl", "data");
Возвращает string
Проверка оплаты
await sp.ValidatorAsync("webhook", "Xbody_hash");
//or
sp.Validator("webhook", "Xbody_hash");
Возвращает bool
Exceptions
BabRequestException
Неправильная форма запроса
UnathorizedException
Неверный token или id
BadGatewayException
Spworlds api отключен
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. 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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net8.0
- RestSharp (>= 110.2.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.