The MapLarge API Connector (MapLargeConnector) is a convenience class that facilitates access of the MapLarge API. The class MapLargeConnector has been implemented in 4 languages: Python, Java, C#, and PHP. The main class MapLargeConnector is used to establish and manage a session with a MapLarge API server. This class exposes several methods for accessing functionality on the MapLarge server.
The Constructor follows this basic pattern, with slight differences depending on language. It is overloaded to allow for passing of username/password or username/authtoken for authentication.
Used to Invoke API requests over HTTP that can be handled sufficiently by GET requests. This would be for relatively short data, such as Account or Table Listings. Files can be uploaded, but only in the limited case of passing files by URL. Uploading of file data directly must use the POST method below.
Performs the same API Requests as the first method, but can handle sending and receiveing of large amounts of data as HTTP POST is used. This also allows for full featured Binary file uploads directly from your client application.
A property that when set to true causes the API to "simulate" functionality. HTTP calls will not actually occur and debug info about the call is returned from methods. Useful for debugging.
A convenience method to allow retrieval of the Auth Token -- a common use case among many users.
General usage involves instantiation of the MapLargeConnector and subsequent calls to the server via the InvokeAPI methods.