test_lgq/niucloud/core/oauth/Weapp.php

32 lines
544 B
PHP
Raw Normal View History

2024-01-24 17:36:08 +08:00
<?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.
}
}