OAuthProvider
PHP Manual

OAuthProvider::tokenHandler

(PECL OAuth >= 1.0.0)

OAuthProvider::tokenHandlerSet the tokenHandler handler callback

说明

public void OAuthProvider::tokenHandler ( callable $callback_function )

Sets the token handler callback, which will later be called with OAuthProvider::callTokenHandler().

Warning

本函数还未编写文档,仅有参数列表。

参数

callback_function

The callable functions name.

返回值

没有返回值。

范例

Example #1 Example OAuthProvider::tokenHandler() callback

<?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;
}
?>

参见


OAuthProvider
PHP Manual