私密消息验证接口无法从 encryptedData 中获取 activityId?
无法解密 返回空
<?php
$aesKey=base64_decode(‘2qTyIHJmowLsFGx82cgSzQ==’);
$aesIV=base64_decode(“8tMJrZ0NnT31CTmANHDClw==”);
$aesCipher=base64_decode(“ApEDr3dx/1H9wIpo57nOkyJMUFaxuJ1i0W2u6FnQ980liFZwrVudlCrL7rjMC9ItX2C3F1EXEjhHFVAN3BtLM0rfVQUM3tfCKwPRAsEtozssLOqnAh/GL4B3ixWR0V25”);
$result=openssl_decrypt( $aesCipher, “AES-128-CBC”, $aesKey, 1, $aesIV);
?>