未找到 OAuth 类

问题描述 投票:0回答:1

在 Etsy 产品中找不到“App\Libraries\OAuth”类 如何下载 OAuth 包或类

$this->oauthClient = new OAuth($this->apiKey, $this->apiSecret, OAUTH_SIG_METHOD_HMACSHA1, OAUTH_AUTH_TYPE_URI);
$this->oauthClient->disableSSLChecks();
$this->oauthClient->setToken($token, $tokenSecret);

找不到此 OAuth

php oauth etsy etsyapi
1个回答
0
投票

确保您已安装OAuth PECL 库。您可以通过检查

phpinfo()
的输出来判断它是否已安装。

© www.soinside.com 2019 - 2024. All rights reserved.