PHP 8.3.4 Released!

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