fork download
  1. <?php
  2. $employeeId = 'ANDRIY PI';
  3. $client = 'ALASK';
  4. $reportUrl = "https://se/ords/webdba/TMSODBC.pkg_forecast_web.prc_sum_base"
  5. . "?p_client=$client"
  6. . "&p_user=" . urlencode($employeeId);
  7.  
  8.  
  9.  
  10. // Please enter any id/key from access_key table
  11. // select * from tms.access_key;
  12. $privateKeyID = "key_1";
  13. $privateKey = "dfr....h";
  14.  
  15. $dateStr = gmdate('YmdHis');
  16. $stringToSign = $employeeId . $dateStr . $privateKey;
  17. $signature = hash_hmac('sha256', $stringToSign, $privateKey);
  18.  
  19. $token = urlencode($signature . '|' . $privateKeyID . '|' . $dateStr);
  20.  
  21. //URL with token
  22. echo $reportUrl . '&p_token=' . $token;
  23.  
Success #stdin #stdout 0.02s 25832KB
stdin
Standard input is empty
stdout
https://se/ords/webdba/TMSODBC.pkg_forecast_web.prc_sum_base?p_client=ALASK&p_user=ANDRIY+PI&p_token=ca4135630a68a1a6d2b3f39fa3e079d4ebb2399bf472b7f82afdd04056aacb57%7Ckey_1%7C20250321181801