This commit is contained in:
mkm 2023-08-25 14:43:41 +08:00
parent 3fc14e25ce
commit 4c68e54391
3 changed files with 8 additions and 2 deletions

View File

@ -193,6 +193,7 @@ class IndexController extends BaseApiController
public function notifyAuthentication()
{
$parmas = Request()->param();
halt($parmas);
Log::error('notifyAuthentication', $parmas);
if ($parmas) {
Company::where('id',$parmas['id'])->update(['is_authentication'=>1]);

7
app/api/route/index.php Normal file
View File

@ -0,0 +1,7 @@
<?php
use think\facade\Route;
Route::group('v1', function () {
Route::post('/notify_authentication','/Index/notifyAuthentication');
Route::post('/notify_property','/Index/notifyProperty');
})->prefix('api');

View File

@ -35,6 +35,4 @@ Route::rule('crontab', function () {
});
Route::post('/notify_url', IndexController::class . '@notifyUrl');
Route::post('/v1/notify_property',IndexController::class . '@notifyProperty');
Route::any('/v1/notify_authentication',IndexController::class . '@notifyAuthentication');
Route::get('/api/junziqian/download_file',JunziqianController::class . '@download_file');