OAuthProvider::tokenHandler
PHP function
Edit on GitHub ✎
(PECL OAuth >= 1.0.0)
Set the tokenHandler handler callback
Description
OAuthProvider::tokenHandler(callable $callback_function): void
Sets the token handler callback, which will later be called with OAuthProvider::callTokenHandler.
Func
Parameters
callback_functionThe
callablefunctions name.
Return Values
Void
Examples
Example OAuthProvider::tokenHandler callback
php
<?php
function tokenHandler($provider) {
if ($provider->token === 'rejected') {
return OAUTH_TOKEN_REJECTED;
} elseif ($provider->token === 'revoked') {
return OAUTH_TOKEN_REVOKED;
}
$provider->token_secret = "the_tokens_secret";
return OAUTH_OK;
}
?>See Also
OAuthProvider::callTokenHandler