Skip to content

Credentials

Sam Gerene edited this page May 21, 2018 · 2 revisions

The Credentials class is used to encapsulate the authentication tokens and URL of the API you would like to connect to. The SatSearchService exposes methods to query the satsearch APi, each method that queries the API takes the Credentials class as an argument.

var uri = new Uri("https://api.satsearch.co");
var credentials = new Credentials("API-Token", "your-Application-Token", uri);

var result = satsearchService.Search(credentials, new CancellationToken(), null);

satsearch-SDK

  1. Home
  2. Documentation Overview
  3. Getting your API tokens
  4. Roadmap

Library guts explained

  1. Credentials
  2. HttpClientService
  3. Serializer
  4. SatSearchService

Clone this wiki locally