https://github.com/dimo-network/dimo-dotnet-sdk
DIMO Developer SDK for .NET
https://github.com/dimo-network/dimo-dotnet-sdk
api-wrapper blockchain connected-vehicles csharp dimo dotnet sdk web3
Last synced: 8 months ago
JSON representation
DIMO Developer SDK for .NET
- Host: GitHub
- URL: https://github.com/dimo-network/dimo-dotnet-sdk
- Owner: DIMO-Network
- License: apache-2.0
- Created: 2024-07-25T15:54:23.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2025-01-07T21:22:32.000Z (9 months ago)
- Last Synced: 2025-02-07T22:55:32.546Z (8 months ago)
- Topics: api-wrapper, blockchain, connected-vehicles, csharp, dimo, dotnet, sdk, web3
- Language: C#
- Homepage: https://dimo.org/developers
- Size: 385 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# DIMO Client for .NET
This is a .NET client for the DIMO API. It is a simple wrapper around the DIMO API, which allows you to interact with the DIMO API using .NET.
## Installation
You can install the DIMO Client for .NET using NuGet. To install the DIMO Client for .NET, run the following command in the Package Manager Console:
For Windows Users:
```
Install-Package Dimo.Client
```For Linux/Mac Users:
```
dotnet add package Dimo.Client
```## API Documentation
Please visit the DIMO [Developer Documentation](https://docs.Dimo.zone/developer-platform) to learn more about building on DIMO and detailed information on the API.
### Developer Registration
As part of the authentication process, you will need to obtain a Developer License via the [DIMO Developer Console](https://console.dimo.xyz/). To get started with registration, follow the steps below:
1. Sign up on the [DIMO Developer Console](https://console.dimo.xyz/).
2. Connect a web3 wallet (if you didn't sign up with one)
3. Click on `Create app` and fill out the details about your project namespace (external-facing, e.g. `Drive2Survive LLC.`) and your application name (internal, e.g. `app-prod`)
4. Generate an API key and add in your preferred redirect URI## Usage
DIMO Client for .NET is can be used with dependency injection or without it. Below are examples of how to use the DIMO Client for .NET with and without dependency injection.
### Without Dependency Injection
You can add each service individually to the DIMO Client. Below is an example of how to add the core services, GraphQL services, and Streamr services to the DIMO Client.
```csharp
using Dimo.Client;var dimoClient = new DimoClientBuilder()
.WithEnvironment(DimoEnvironment.Production)
.AddRestServices()
.AddGraphQLServices()
.Build();
```
Or you can add all services at once.
```csharp
var dimoClient = new DimoClientBuilder().AddAllServices().Build();
```### With Dependency Injection
You can also use the DIMO Client for .NET with dependency injection. Below is an example of how to add the DIMO Client to the service collection.
```csharp
using Dimo.Client;services.AddDimoClient(options =>
{
options.Environment = DimoEnvironment.Production;
});
```
___
**_NOTE:_** Using dependency injection grants you access to all individual interfaces that make up the DIMO Client. You can inject them into your services as needed.
___
### ConfigurationYou can configure the DIMO Client using the `DimoClientOptions` class. Below is an example of how to configure the DIMO Client.
```csharp
using Dimo.Client;services.AddDimoClient(options =>
{
options.Environment = DimoEnvironment.Production;
});
```
___
**_NOTE:_** by default, the DIMO Client for .NET uses the `Production` environment. You can change the environment by setting the `Environment` property of the `DimoClientOptions` class.
___### Services
#### REST Services
The rest services provide the following functionality:
- Authentication
- Device Data
- Device Definitions
- Events
- Token Exchange
- Trips
- Users
- Valuations
- Vehicle Signal Decoding#### GraphQL Services
The GraphQL services provide the following functionality:
- Identity API
- Telemetry API#### Streamr Services
Coming soon...### Examples
Below are examples of how to use the DIMO Client for .NET.
### Authentication
In order to authenticate and access private API data, you will need to [authenticate with the DIMO Auth Server](https://docs.dimo.zone/developer-platform/getting-started/authentication). The SDK provides you with all the steps needed in the [Wallet-based Authentication Flow](https://docs.dimo.zone/developer-platform/getting-started/authentication/wallet-based-authentication-flow) in case you need it to build a wallet integration around it. We also offer expedited functions to streamline the multiple calls needed.
#### Prerequisites for Authentication
1. A valid Developer License
2. A valid API key> At its core, the API key is the private key to a Web3 wallet. Unlike traditional wallets, which store physical currency, Web3 wallets store digital assets such as Bitcoin, Ethereum, and NFTs. In DIMO's Developer Console, we provision a randomly-generated Web3 wallet for you as the enabled signer of your Developer License, decoupling the operations from wallets that may have assets in them for extra safety.
___
**_NOTE:_** The wallet related to the API key is different from the spender or holder wallet for your [DIMO Developer License](https://github.com/DIMO-Network/developer-license-donotus). This gives users peace of mind that their assets are safely in their spender wallet, and the Developer License NFT is in their holder wallet.
___
There three ways to authenticate with the DIMO Auth Server based on the steps listed in [Wallet-based Authentication Flow](https://docs.Dimo.zone/developer-platform/getting-started/authentication/wallet-based-authentication-flow):1. Using `GenerateChallengeAsync`, `SignChallengeAsync`, and `SubmitChallengeAsync` methods.
```csharp
using Dimo.Client;var dimoClient = new DimoClientBuilder()
.AddAllServices()
.WithEnvironment(DimoEnvironment.Production)
.Build();
var challenge = await dimoClient.AuthenticationService.GenerateChallengeAsync(
clientId: "",
domain: "",
address: "",
);var signedChallenge = await dimoClient.AuthenticationService.SignChallengeAsync(
message: challenge.Challenge,
privateKey: ""
);var auth = await dimoClient.AuthenticationService.SubmitChallengeAsync(
clientId: "",
domain: "",
state: challenge.State,
signature: signedChallenge
);
```2. Using the `GetTokenAsync` method in the `AuthenticationService` class.
```csharp
using Dimo.Client;var dimoClient = new DimoClientBuilder()
.AddAllServices()
.WithEnvironment(DimoEnvironment.Production)
.Build();
var auth = await dimoClient.AuthenticationService.GetTokenAsync(
clientId: "",
domain: "",
privateKey: "",
address: ""
);
Console.WriteLine(auth.AccessToken);
```3. Using the `GetTokenAsync` method in the `AuthenticationService` class with a `ClientCredentials` object.
```csharp
using Dimo.Client;var dimoClient = new DimoClientBuilder()
.AddAllServices()
.WithEnvironment(DimoEnvironment.Production)
.WithCredentials(new ClientCredentials
{
Address = "",
ClientId = "",
Domain = "",
PrivateKey = ""
})
.Build();var auth = await dimoClient.AuthenticationService.GetTokenAsync();
Console.WriteLine(auth.AccessToken);
```
___
**_NOTE:_**
- The `GetTokenAsync` method in the `AuthenticationService` will expect you to set `ClientCredentials` objects on build configuration.
- When using dependency injection, you can set the `ClientCredentials` object in the `AddDimoClient` method or use Options Pattern to add it configuring an `IOptions`.
- If you call this method and neither is set it will throw an exception
___#### Device Data API
```csharp
using Dimo.Client;var dimoClient = new DimoClientBuilder()
.AddAllServices()
.WithEnvironment(DimoEnvironment.Production)
.Build();var tokenId = 123456; // The token id of the device you want to get the data for
var auth = await dimoClient.AuthenticationService.GetTokenAsync(
clientId: "",
domain: "",
privateKey: "",
address: ""
);var privilegeToken = await dimoClient.TokenExchangeService.GetPrivilegeTokenAsync(
accessToken: auth.AccessToken,
tokenId: tokenId,
privileges: [
PrivilegeSharing.AllTimeNoLocationData,
PrivilegeSharing.Commands,
PrivilegeSharing.CurrentLocation,
PrivilegeSharing.AllTimeLocation
]); // The privileges you want to get for the devicevar vehicleStatus = await dimoClient.DeviceDataService.GetVehicleStatusAsync(tokenId, privilegeToken.Token);
Console.WriteLine(vehicleStatus);
```
___
**_NOTE:_** for the `privileges` parameter you can check the [DIMO API documentation](https://docs.Dimo.zone/developer-platform/rest-api-references/dimo-protocol/token-exchange-api/token-exchange-api-endpoints#references-for-privilege-sharing) for the available privileges.
___
#### Querying the GraphQL APIThe SDK accepts any type of valid custom GraphQL queries, but we've also included a few sample queries to help you understand the DIMO GraphQL APIs.
```csharp
using Dimo.Client;var dimoClient = new DimoClientBuilder()
.AddAllServices()
.WithEnvironment(DimoEnvironment.Production)
.Build();// Code to authenticate with the DIMO Auth Server and get the privilege token
// ...var query = @"
{
some_valid_GraphQL_query
}
";var variables = new
{
VariableName = "VariableValue"
};var result = await dimoClient.TelemetryService.ExecuteQueryAsync(query, variables, privilegeToken.Token);
Console.WriteLine(result);
```
___
**_NOTE:_** The `ExecuteQueryAsync` method accepts a generic type `TResponse` which is the type of the response you expect from the GraphQL query.
___