php8.5
Home/ Manual/ oauth / oauthprovider/ OAuthProvider::tokenHandler

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_function

The callable functions 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

Source: reference/oauth/oauthprovider/tokenhandler.xml · from the official PHP manual (php/doc-en)