Skip to main content
Version: Python

IOS SDK Reference

The Glide IOS SDK provides two main functions:

  1. Generating an Auth URL: To begin the 3-legged OAuth flow the client can generate a url for itself to redirect the user to.
  2. Performing a Mobile Request: The client can be used to force a request to be made over the mobile network.

There is also a convenience method to perform both of these steps in one call.

The authorization flow from the client's side ends with the client receiving an authorization code which can be exchanged for an access token on the backend.

The backend then uses this code to request an access token from the Glide API which can be used to make requests on behalf of the user.

GlideClient Reference

WIP