| xqd
@@ -73,9 +73,10 @@ class AuthController extends Controller
|
|
|
public function notifyAccount(Request $request)
|
|
|
{
|
|
|
\Log::info(111);
|
|
|
- $echoStr = $_GET["echostr"];
|
|
|
+ //
|
|
|
//如果有$echoStr说明是对接
|
|
|
- if (!empty($echoStr)) {
|
|
|
+ if (isset($_GET["echostr"])) {
|
|
|
+ $echoStr = $_GET["echostr"];
|
|
|
//对接规则
|
|
|
$signature = $_GET["signature"];
|
|
|
$timestamp = $_GET["timestamp"];
|