- สำคัญมากๆจำเป็นต้อง Cronjob มาที่ access_token.php ตลอดเวลา เพื่อทำให้ access_token ไม่ตาย !
- $phone // เบอร์ทรูมันนี่วอลเลท
- $password // รหัสผ่านทรูมันนี่วอลเลท
- $otp_code // OTP ใน SMS 6 หลัก (ตัวเลข)
- $otp_ref // OTP ใน SMS REF 4 หลัก (ตัวอักษร)
- $access_token // ได้จาก SubmitLoginOTP
<?php
require "Truewallet.php";
$tw = new TrueWalletClass($phone, $password);
print_r($tw->RequestLoginOTP());
print_r($tw->SubmitLoginOTP($otp_code, $phone, $otp_ref));
$tw->setAccessToken($access_token);
$data = $tw->GetTransaction();
foreach ($data["data"]["activities"] as $transfer) {
$values = $tw->GetTransactionReport($transfer["report_id"]);
print_r($values);
}
?>
<?php
require "Truewallet.php";
$tw = new TrueWalletClass($phone, $password);
$tw->setAccessToken($access_token);
$data = $tw->GetProfile();
print($data["code"]);
?>
- โครง Class ตัวนี้นำมาจาก likecyber
- Parameters เเละ URL ตัวนี้นำมาจาก chick4nnn
- เเนวทางเลี้ยง access_token ตัวนี้นำมาจาก Manatchai Roengtum