Files
niucloud-saas/niucloud/core/oauth/Weapp.php
wangchen147 72333f8528 0.0.5
2023-12-15 16:43:29 +08:00

32 lines
544 B
PHP

<?php
namespace core\oauth;
/**
* 微信小程序授权
* Class Weapp
* @package core\oauth
*/
class Weapp extends BaseOauth
{
/**
* @param array $config
* @return void
*/
protected function initialize(array $config = [])
{
parent::initialize($config);
}
public function getFansInfo(string $openid = null)
{
// TODO: Implement getFansInfo() method.
}
public function oauth(string $code = null, array $options = [])
{
// TODO: Implement oauth() method.
}
}