OAuthProvider::addRequiredParameter

(PECL OAuth >= 1.0.0)

OAuthProvider::addRequiredParameterAdd required parameters

Опис

final public bool OAuthProvider::addRequiredParameter ( string $req_params )

Add required oauth provider parameters.

Увага

This function is currently not documented; only its argument list is available.

Параметри

req_params

The required parameters.

Значення, що повертаються

Повертає TRUE в успішному випадку або FALSE в разі помилки.

Прогляньте Також

add a note add a note

User Contributed Notes 1 note

up
-7
me at thomashunter dot name
10 years ago
This method can be used for adding non-standard parameters required by your application, as well as parameters within the spec.

<?php
$Provider
->addRequiredParameter("permissions");
$Provider->addRequiredParameter("oauth_callback");
To Top