Skip to content

Instantly share code, notes, and snippets.

@bajtos
Created January 15, 2014 11:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bajtos/8434899 to your computer and use it in GitHub Desktop.
Save bajtos/8434899 to your computer and use it in GitHub Desktop.
Checklist for LBUser implementation in iOS and Android SDKs.

Checklist for LBUser implementation in iOS and Android SDKs.

Basic auth worklow:

  1. Login as an existing user (email + password).
  2. All REST calls are using the access token obtained in step 1
  3. Log out

Advanced:

  1. The access token is preserved between app restarts (i.e. in SharedPreferences on Android)
  2. When the access token expires, the app shows a login dialog and retries the request once the user is logged in.

User registration:

  1. Create a new user.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment