PHP Doku:: Set the timestampNonceHandler handler callback - oauthprovider.timestampnoncehandler.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzWeb ServicesOAuthThe OAuthProvider classOAuthProvider::timestampNonceHandler

Ein Service von Reinhard Neidl - Webprogrammierung.

The OAuthProvider class

<<OAuthProvider::setRequestTokenPath

OAuthProvider::tokenHandler>>

OAuthProvider::timestampNonceHandler

(PECL OAuth >= 1.0.0)

OAuthProvider::timestampNonceHandlerSet the timestampNonceHandler handler callback

Beschreibung

public void OAuthProvider::timestampNonceHandler ( callback $callback_function )

Sets the timestamp nonce handler callback, which will later be called with OAuthProvider::callTimestampNonceHandler(). Errors related to timestamp/nonce are thrown to this callback.

Warnung

Diese Funktion ist bis jetzt nicht dokumentiert. Es steht nur die Liste der Argumente zur Verfügung.

Parameter-Liste

callback_function

The callback functions name.

Rückgabewerte

Es wird kein Wert zurückgegeben.

Beispiele

Beispiel #1 Example OAuthProvider::timestampNonceHandler() callback

<?php
function timestampNonceChecker($provider) {

    if (
$provider->nonce === 'bad') {
        return 
OAUTH_BAD_NONCE;
    } elseif (
$provider->timestamp == '0') {
        return 
OAUTH_BAD_TIMESTAMP;
    }
    
    return 
OAUTH_OK;
}
?>

Siehe auch


Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)