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.
To use this SDK with AGIs Analytical Services, follow these steps.
- 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.
- 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>
- Replace the text "AGI provided API Key" with the actual key AGI provided to you.
- 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.