Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

By utilizing the API, you are agreeing to the Pinogy API Terms of Service Agreement.  If you would also like your application listed in Pinogy’s App Store, you will also need to agree to the Application Developer and API Agreement.

...

If you find yourself getting stuck at any point while trying to implement the apiAPI, email us at dev-support@pinogy.com.

Pinogy API

This The first step to using Pinogy’s API is to be able to log in.  Sample implementations are available for:

...

In addition, you will need to obtain the api API host, access key, secret key, and password for each client.

...

Limits on API Usage

Currently, there are two usage-based restrictions imposed while using the API.  Normal use of the API should not hit either of these, but they are listed below to make sure you are aware of them.

  • Files in our system get a unique idID.  If the file is ever changed, then a new id ID is created, and if appropriate, the old file and referenced id is ID are deleted.  Because of this, files (which includes include images) should only be pulled once, and then cached locally within your site, server, or application.

  • The number of sessions allowed on one device or login is limited.  Sessions should be reused, instead of having a new session created for every request.  The only time a new session needs to be created is if you receive a 409 response from the API.  In that scenario, the old session has expired or has been terminated.  A new session should be created (programmatically) , and then the request should be resubmitted.

...