在發送之前,我們應該在 C# 端對您的 Base64 字串進行 URL 編碼。
在 php 端對其進行 URL 解碼,然後再對它進行 Base64 解碼。
C# 端
byte[] encbuff = System.Text.Encoding .UTF8.GetBytes("字串");
string enc = Convert.ToBase64String(encbuff);
string enc = Convert.ToBase64String(encbuff);
string enc = Convert.ToBase64String(encbuff);
$data = $_REQUEST['in '];
$decdata = urldecode($data);
$raw = base64_decode($decdata);