Forked from tylerreinhart/toopher-java-authentication-example.java
Last active
August 29, 2015 14:16
-
-
Save smholloway/7296fe38caac1f1f0d99 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import com.toopher.*; | |
// Create an API object using your credentials | |
ToopherApi api = new ToopherApi("<your consumer key>", "<your consumer secret>"); | |
// Step 2 - Authenticate a log in | |
AuthenticationStatus auth = api.authenticate(pairing.id, "my computer"); | |
// Once they've responded you can then check the status | |
AuthenticationStatus status = api.getAuthenticationStatus(auth.id); | |
if (status.pending == false && status.granted == true) { | |
// Success! | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment