You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
652 B
27 lines
652 B
<?php
|
|
declare (strict_types=1);
|
|
|
|
namespace app\api\controller;
|
|
|
|
use cores\BaseController;
|
|
|
|
class Wxserver extends BaseController
|
|
{
|
|
public function verifyTicket()
|
|
{
|
|
$xmlData = file_get_contents("php://input");
|
|
$obj = new \app\common\library\wxserver\Server();
|
|
$obj->getVerifyTicket($xmlData);
|
|
echo 'success';
|
|
}
|
|
|
|
public function redirect()
|
|
{
|
|
$authorization_code = $this->request->get('auth_code');
|
|
if ($authorization_code) {
|
|
$obj = new \app\common\library\wxserver\Server();
|
|
$obj->authorizationInfo($authorization_code);
|
|
}
|
|
echo 'success';
|
|
}
|
|
} |