CakeFest 2024: The Official CakePHP Conference

OAuthProvider::is2LeggedEndpoint

(PECL OAuth >= 1.0.0)

OAuthProvider::is2LeggedEndpointis2LeggedEndpoint

説明

public OAuthProvider::is2LeggedEndpoint(mixed $params_array): void

2-legged フローあるいはリクエストの署名。トークンは不要です。

警告

この関数は、 現在のところ詳細な情報はありません。引数のリストのみが 記述されています。

パラメータ

params_array

戻り値

OAuthProvider オブジェクトを返します。

例1 OAuthProvider::is2LeggedEndpoint() の例

<?php

$provider
= new OAuthProvider();

$provider->is2LeggedEndpoint(true);

?>

参考

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top