Moesif.Api
1.1.4
See the version list below for details.
dotnet add package Moesif.Api --version 1.1.4
NuGet\Install-Package Moesif.Api -Version 1.1.4
<PackageReference Include="Moesif.Api" Version="1.1.4" />
paket add Moesif.Api --version 1.1.4
#r "nuget: Moesif.Api, 1.1.4"
// Install Moesif.Api as a Cake Addin #addin nuget:?package=Moesif.Api&version=1.1.4 // Install Moesif.Api as a Cake Tool #tool nuget:?package=Moesif.Api&version=1.1.4
MoesifApi Lib for C#
Check out Moesif's Developer Documentation and C# API Reference to learn more
How to Install:
Install the Nuget Package:
Install-Package Moesif.Api
How to Use:
using System;
using System.Collections.Generic;
using Moesif.Api;
using Moesif.Api.Models;
using Moesif.Api.Exceptions;
using Moesif.Api.Controllers;
using System.Threading.Tasks;
// Create client instance using your ApplicationId
var client = new MoesifApiClient("my_application_id");
var apiClient = client.Api;
// Parameters for the API call
var reqHeaders = new Dictionary<string, string>();
reqHeaders.Add("Host", "api.acmeinc.com");
reqHeaders.Add("Accept", "*/*");
reqHeaders.Add("Connection", "Keep-Alive");
reqHeaders.Add("User-Agent", "Dalvik/2.1.0 (Linux; U; Android 5.0.2; C6906 Build/14.5.A.0.242)");
reqHeaders.Add("Content-Type", "application/json");
reqHeaders.Add("Content-Length", "126");
reqHeaders.Add("Accept-Encoding", "gzip");
var reqBody = ApiHelper.JsonDeserialize<object>(@" {
""items"": [
{
""type"": 1,
""id"": ""fwfrf""
},
{
""type"": 2,
""id"": ""d43d3f""
}
]
}");
var rspHeaders = new Dictionary<string, string>();
rspHeaders.Add("Date", "Tue, 23 Nov 2016 23:46:49 GMT");
rspHeaders.Add("Vary", "Accept-Encoding");
rspHeaders.Add("Pragma", "no-cache");
rspHeaders.Add("Expires", "-1");
rspHeaders.Add("Content-Type", "application/json; charset=utf-8");
rspHeaders.Add("Cache-Control", "no-cache");
var rspBody = ApiHelper.JsonDeserialize<object>(@" {
""Error"": ""InvalidArgumentException"",
""Message"": ""Missing field field_a""
}");
var eventReq = new EventRequestModel()
{
Time = DateTime.Now.AddSeconds(-1),
Uri = "https://api.acmeinc.com/items/reviews/",
Verb = "PATCH",
ApiVersion = "1.1.0",
IpAddress = "61.48.220.123",
Headers = reqHeaders,
Body = reqBody
};
var eventRsp = new EventResponseModel()
{
Time = DateTime.Now,
Status = 500,
Headers = rspHeaders,
Body = rspBody
};
Dictionary<string, string> metadata = new Dictionary<string, string>
{
{ "email", "abc@email.com" },
{ "name", "abcdef" },
{ "image", "123" }
};
var eventModel = new EventModel()
{
Request = eventReq,
Response = eventRsp,
UserId = "my_user_id",
SessionToken = "23jdf0owekfmcn4u3qypxg09w4d8ayrcdx8nu2ng]s98y18cx98q3yhwmnhcfx43f",
Metadata = metadata
};
// Perform API call
try
{
await apiClient.CreateEventAsync(eventModel);
}
catch(APIException) {};
Update User:
The api also let you update a user profile with custom metadata. The UserId
is a required field, all other fields are optional.
Dictionary<string, object> metadata = new Dictionary<string, object>
{
{"email", "johndoe@acmeinc.com"},
{"string_field", "value_1"},
{"number_field", 0},
{"object_field", new Dictionary<string, string> {
{"field_a", "value_a"},
{"field_b", "value_b"}
}
}
};
var userModel = new UserModel()
{
UserAgentString = "Dalvik/2.1.0 (Linux; U; Android 5.0.2; C6906 Build/14.5.A.0.242)",
UserId = "my_user_id",
Metadata = metadata,
ModifiedTime = DateTime.UtcNow
};
// Perform API call
try
{
// Create client instance using your ApplicationId
var client = new MoesifApiClient("my_application_id");
var apiClient = client.Api;
apiClient.UpdateUserAsync(userModel);
}
catch (APIException) { };
Update Company:
The api also let you update a company profile with custom metadata. The CompanyId
is a required field, all other fields are optional.
Dictionary<string, object> metadata = new Dictionary<string, object>
{
{"email", "johndoe@acmeinc.com"},
{"string_field", "value_1"},
{"number_field", 0},
{"object_field", new Dictionary<string, string> {
{"field_a", "value_a"},
{"field_b", "value_b"}
}
}
};
var companyModel = new CompanyModel()
{
CompanyId = "1",
Metadata = metadata,
ModifiedTime = DateTime.UtcNow
};
// Perform API call
try
{
// Create client instance using your ApplicationId
var client = new MoesifApiClient("my_application_id");
var apiClient = client.Api;
apiClient.UpdateCompanyAsync(companyModel);
}
catch (APIException) { };
How To Test:
The SDK also contain tests, which are contained in the Moesif.Api.Tests project. In order to invoke these test cases, you will need NUnit 3.0 Test Adapter Extension for Visual Studio. Once the SDK is complied, the test cases should appear in the Test Explorer window. Here, you can click Run All to execute these test cases.
Compatibility:
The build process generates a portable class library, which can be used like a normal class library. The generated library is compatible with Windows Forms, Windows RT, Windows Phone 8, Silverlight 5, Xamarin iOS, Xamarin Android and Mono. More information on how to use can be found at the following link.
http://msdn.microsoft.com/en-us/library/vstudio/gg597391(v=vs.100).aspx
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net is compatible. |
-
- Microsoft.Bcl (>= 1.1.10)
- Microsoft.Bcl.Async (>= 1.0.168)
- Microsoft.Bcl.Build (>= 1.0.21)
- Microsoft.Net.Http (>= 2.2.29)
- Newtonsoft.Json (>= 9.0.1)
- Unirest-APIMATIC (>= 1.0.1.26)
NuGet packages (3)
Showing the top 3 NuGet packages that depend on Moesif.Api:
Package | Downloads |
---|---|
Moesif.Middleware
.NET Middleware to log API Calls to Moesif API Analytics and Monitoring |
|
Moesif.Azure.Web.Logging
IIS Module for logging API calls to Moesif |
|
Moesif.Azure.Apps
Leverage user-centric API analytics to drive adoption, usage, and retention, including: - Gain visibility into API adoption and usage - Quickly debug functional and performance issues - Monitor for issues impacting customers - Create live dashboards and share with colleagues - Embed API logs in your app to help customers onboard quickly Native support for REST, GraphQL, Web3, and others |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
2.0.8 | 16,084 | 6/22/2023 |
2.0.7 | 256 | 6/13/2023 |
2.0.6 | 153 | 6/13/2023 |
2.0.5 | 209 | 6/10/2023 |
2.0.4 | 4,897 | 9/13/2022 |
2.0.3 | 5,105 | 3/12/2021 |
2.0.2 | 467 | 3/8/2021 |
2.0.1 | 2,179 | 6/15/2020 |
2.0.0 | 666 | 6/11/2020 |
1.1.9 | 2,654 | 12/19/2019 |
1.1.7 | 720 | 12/13/2019 |
1.1.6 | 747 | 11/15/2019 |
1.1.5 | 1,179 | 8/22/2019 |
1.1.4 | 2,210 | 2/22/2019 |
1.1.3 | 671 | 2/16/2019 |
1.1.2 | 955 | 2/9/2019 |
1.1.1 | 1,385 | 11/1/2018 |
1.1.0 | 747 | 10/23/2018 |
1.0.6 | 3,811 | 2/12/2018 |