I hereby claim:
- I am smholloway on github.
- I am sethholloway (https://keybase.io/sethholloway) on keybase.
- I have a public key whose fingerprint is 04A6 233C 2F88 9B58 DB83 3332 0AFE B2CB 22AC 895A
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| use ToopherAPI | |
| # Create an API object using your credentials | |
| my $api = new ToopherApi("<your consumer key>", "<your consumer secret>"); | |
| # Step 1 - Pair with their phone's Toopher app | |
| my $pairing_status = $api->pair("pairing phrase", "[email protected]"); |
| require 'toopher_api' | |
| # Create an API object using your credentials | |
| toopher = ToopherAPI.new("key", "secret") | |
| # Step 1 - Pair with their phone's Toopher app | |
| pairing = toopher.pair("pairing phrase", "[email protected]") |
| { | |
| "action": { | |
| "created": "2015-01-01 10:10:10", | |
| "id": "12345678-1234-4123-8123-1234567890ab", | |
| "modified": "2015-01-01 10:10:10", | |
| "name": "log in", | |
| "requester": { | |
| "consumer": { | |
| "key": "key" | |
| }, |
| { | |
| "action": { | |
| "created": "2015-01-01 10:10:10", | |
| "id": "12345678-1234-4123-8123-1234567890ab", | |
| "modified": "2015-01-01 10:10:10", | |
| "name": "log in", | |
| "requester": { | |
| "consumer": { | |
| "key": "key" | |
| }, |
| 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) |
| require 'toopher_api' | |
| # Create an API object using your credentials | |
| toopher = ToopherAPI.new("key", "secret") | |
| # Authenticate a log in | |
| auth_status = toopher.authenticate(pairing.id, 'my computer') | |
| # Once they've responded you can then check the status | |
| auth_status = toopher.get_authentication_status(auth_status.id) |
| require_once("toopher_api.php"); | |
| // Create an API object using your credentials | |
| $toopherApi = new ToopherAPI($key, $secret); | |
| // Authenticate a log in | |
| $authStatus = $toopherApi->authenticate($pairingStatus['id'], "my computer"); | |
| // Once they've responded you can then check the status | |
| while($authStatus['pending']){ |
| require_once("toopher_api.php"); | |
| // Create an API object using your credentials | |
| $toopherApi = new ToopherAPI($key, $secret); | |
| // Step 1 - Pair with their phone's Toopher app | |
| $pairing = $toopherApi->pair("pairing phrase", "[email protected]"); |
| using Toopher; | |
| // Create an API object using your credentials | |
| ToopherApi api = new ToopherApi("<your consumer key>", "<your consumer secret>"); | |
| // Step 1 - Pair with their phone's Toopher app | |
| PairingStatus pairing = api.Pair("pairing phrase", "[email protected]"); |