diff --git a/app/api/controller/IndexController.php b/app/api/controller/IndexController.php index 52acbbcac..d432fc1bc 100755 --- a/app/api/controller/IndexController.php +++ b/app/api/controller/IndexController.php @@ -32,7 +32,7 @@ class IndexController extends BaseApiController { - public array $notNeedLogin = ['index', 'config', 'policy', 'decorate', 'notifyUrl','notifyProperty']; + public array $notNeedLogin = ['index', 'config', 'policy', 'decorate', 'notifyUrl','notifyProperty','notifyAuthentication']; /** @@ -155,8 +155,8 @@ class IndexController extends BaseApiController return json(['success' => false, 'msg' => '失败,没有参数']); } - /** - * 资产回调 + /** + * 认证回调 */ public function notifyAuthentication() { diff --git a/app/api/controller/JunziqianController.php b/app/api/controller/JunziqianController.php index 3e79c2d15..0b931a5da 100644 --- a/app/api/controller/JunziqianController.php +++ b/app/api/controller/JunziqianController.php @@ -86,7 +86,7 @@ class JunziqianController extends BaseApiController if (isset($data['master_email'])) { $request->emailOrMobile = $data['master_email']; //邮箱 } - $request->notifyUrl = 'https://worker-task.lihaink.cn/notify_authentication?id=' . $data['id']; + $request->notifyUrl = 'https://worker-task.lihaink.cn/v1/notify_authentication?id=' . $data['id']; // $request->emailOrMobile = ; //邮箱 //发起创建企业请求 $response = $requestUtils->doPost("/v2/user/organizationCreate", $request); diff --git a/route/app.php b/route/app.php index 36cf7d634..192ec1b6b 100755 --- a/route/app.php +++ b/route/app.php @@ -36,4 +36,5 @@ Route::rule('crontab', function () { Route::post('/notify_url', IndexController::class . '@notifyUrl'); Route::post('/v1/notify_property',IndexController::class . '@notifyProperty'); +Route::post('/v1/notify_authentication',IndexController::class . '@notifyAuthentication'); Route::get('/api/junziqian/download_file',JunziqianController::class . '@download_file'); \ No newline at end of file