AES-GET使用說明
此版本是GET的加密版本,額外添加Auth-Api及AES進行加解密,安全性更高。
PHP觸發函式:
file_get_contents(網址+GET參數+api參數)
此版本是GET的加密版本,額外添加Auth-Api及AES進行加解密,安全性更高。
PHP觸發函式:
file_get_contents(網址+GET參數+api參數)
此版本是POST的加密版本,額外添加Auth-Api及AES進行加解密,安全性更高。
PHP觸發函式:
$postData = http_build_query(array(
'username' => $username,
'email' => $email,
// 其他欄位...
));
// 傳遞 POST 資料給 send-aes-post.php
$options = array(
'http' => array(
'method' => 'POST',
'header' => 'Content-type: application/x-www-form-urlencoded',
'content' => $postData
)
);
$context = stream_context_create($options);
$result = file_get_contents('http://mail.wrlcc.synology.me/send-aes-post.php', false, $context);