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
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]"); |
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
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]") |
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
{ | |
"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" | |
}, |
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
{ | |
"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" | |
}, |
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
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) |
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
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) |
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
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']){ |
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
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]"); |
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
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]"); |
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
using Toopher; | |
// Create an API object using your credentials | |
ToopherApi api = new ToopherApi("<your consumer key>", "<your consumer secret>"); | |
// 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); |
NewerOlder