Skip to content

Instantly share code, notes, and snippets.

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 smholloway/5b59f7c18c84041161b7 to your computer and use it in GitHub Desktop.
Save smholloway/5b59f7c18c84041161b7 to your computer and use it in GitHub Desktop.
use ToopherAPI
# Create an API object using your credentials
my $api = new ToopherApi("<your consumer key>", "<your consumer secret>");
# Authenticate a log in
my $auth = $api->authenticate($pairing_status->id, "my computer")
# Once they've responded you can then check the status
my $auth_status = $api->get_authentication_status($auth->id)
if (!($auth_status->pending) && $auth_status->granted) {
# Success!
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment