init
- 框架初始化 - 安装插件 - 修复PHP8.4报错
This commit is contained in:
26
addons/shopro/controller/third/Apple.php
Normal file
26
addons/shopro/controller/third/Apple.php
Normal file
@@ -0,0 +1,26 @@
|
||||
<?php
|
||||
|
||||
namespace addons\shopro\controller\third;
|
||||
|
||||
use addons\shopro\controller\Common;
|
||||
use addons\shopro\service\third\apple\Apple as AppleService;
|
||||
|
||||
class Apple extends Common
|
||||
{
|
||||
protected $noNeedLogin = ['login'];
|
||||
|
||||
// 苹果登陆(仅对接App登录)
|
||||
public function login()
|
||||
{
|
||||
$payload = $this->request->post('payload/a');
|
||||
|
||||
$apple = new AppleService();
|
||||
$result = $apple->login($payload);
|
||||
|
||||
if ($result) {
|
||||
$this->success('登陆成功');
|
||||
}
|
||||
|
||||
$this->error('登陆失败');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user