Remove old project files
This commit is contained in:
@@ -1,8 +0,0 @@
|
|||||||
Torn Vault Tacker App Notes
|
|
||||||
|
|
||||||
API calls
|
|
||||||
https://api.torn.com/user/?selections=money&key=\<key>
|
|
||||||
Vault total: vault_amount
|
|
||||||
https://api.torn.com/user/?selections=log&key=\<key>
|
|
||||||
"title": "Vault withdraw"
|
|
||||||
|
|
||||||
@@ -1,17 +0,0 @@
|
|||||||
<?php
|
|
||||||
$jsonMoney = file_get_contents('https://api.torn.com/user/?selections=money&key=LDtibInYMdgVnM9n');
|
|
||||||
$objMoney = json_decode($jsonMoney);
|
|
||||||
|
|
||||||
echo '<h1>User API - Money</h1>';
|
|
||||||
echo '<pre>';
|
|
||||||
print_r($objMoney);
|
|
||||||
echo '</pre>';
|
|
||||||
|
|
||||||
$jsonLog = file_get_contents('https://api.torn.com/user/?selections=log&key=LDtibInYMdgVnM9n');
|
|
||||||
$objLog = json_decode($jsonLog);
|
|
||||||
|
|
||||||
echo '<h1>User API - Log</h1>';
|
|
||||||
echo '<pre>';
|
|
||||||
print_r($objLog);
|
|
||||||
echo '</pre>';
|
|
||||||
?>
|
|
||||||
Reference in New Issue
Block a user