修改音视频签名1

This commit is contained in:
wucongxing 2024-02-02 15:49:02 +08:00
parent ca2d5e4d5a
commit c6716964fe

View File

@ -1711,12 +1711,12 @@ class CallBackController extends AbstractController
*/
public function trtcCallBack(): ResponseInterface
{
$request_params = $this->request->getBody()->getContents();
$SdkAppId = $this->request->header("SdkAppId");
$Sign = $this->request->header("Sign");
$Sign = stripslashes($Sign);
try {
$request_params = $this->request->getBody()->getContents();
$SdkAppId = $this->request->header("SdkAppId");
$Sign = $this->request->header("Sign");
$Sign = stripslashes($Sign);
Log::getInstance("CallBackController-trtcCallBack")->info(json_encode($request_params, JSON_UNESCAPED_UNICODE));
if (empty($SdkAppId)) {