Skip to content
This repository has been archived by the owner on Mar 21, 2020. It is now read-only.

C# SDK For Analytical Graphic's Analytical Services

License

Notifications You must be signed in to change notification settings

tdriver/AGI.AnalyticalServices

Repository files navigation

AGI Analytical Services C# Software Development Kit

NOTE: This repo is no longer maintained by me. See the repo at https://github.com/OneSkySystems/AnalyticalServices.SDK for a more updated version.

Analytical Graphics Inc. (AGI) hosts a set of web services for performing complex analyses.
The services are located here: https://saas.agi.com/V1. This project provides a C# SDK for interacting with the services.
Note that the software hosted in this repository provides no functionality in and of itself. It simply provides a development kit that makes using AGI's Analytical Services easier. To use the Analytical Services (with or without this development kit), you will need an API key. That key can be obtained by visiting the services site above, and following the instructions there.

How to use this SDK

To use this SDK with AGIs Analytical Services, follow these steps.

  1. First contact AGI using one of the methods defined here: https://saas.agi.com/V1/, to obtain an API key.

Once you have the API key, continue on to the next step.

  1. Next, create a file called AGI.AnalyticalServices.config, and place this text in it:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<appSettings>
    <add key="ApiKey" value="AGI provided API Key" />
    <add key="BaseUrl" value="https://saas.agi.com" />
</appSettings>
</configuration>
  1. Replace the text "AGI provided API Key" with the actual key AGI provided to you.
  2. Place this config file in the root folder of your project that uses this SDK.
    • If you try to use this SDK without an API key, you will receive exceptions.

Releases

No releases published

Packages

No packages published

Languages