Skip to content

zeeletter/class-truewallet-php

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 

Repository files navigation

Truemoney Wallet Class

  • สำคัญมากๆจำเป็นต้อง Cronjob มาที่ access_token.php ตลอดเวลา เพื่อทำให้ access_token ไม่ตาย !

Variable

  • $phone // เบอร์ทรูมันนี่วอลเลท
  • $password // รหัสผ่านทรูมันนี่วอลเลท
  • $otp_code // OTP ใน SMS 6 หลัก (ตัวเลข)
  • $otp_ref // OTP ใน SMS REF 4 หลัก (ตัวอักษร)
  • $access_token // ได้จาก SubmitLoginOTP

Example Truemoney Wallet Class

<?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);
  }
?>

Example Cronjob Windows

access_token.php

<?php
  require "Truewallet.php";
  $tw = new TrueWalletClass($phone, $password);
  $tw->setAccessToken($access_token);
  $data = $tw->GetProfile();
  print($data["code"]);
?>

Help my Truemoney Wallet Class .-.

  • โครง Class ตัวนี้นำมาจาก likecyber
  • Parameters เเละ URL ตัวนี้นำมาจาก chick4nnn
  • เเนวทางเลี้ยง access_token ตัวนี้นำมาจาก Manatchai Roengtum

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published