API: Difference between revisions

From ETM
Jump to navigation Jump to search
Line 51: Line 51:
== Desktop interaction ==
== Desktop interaction ==
<br />
<br />
<code>
<syntaxhighlight lang="javascript">
 
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
Line 89: Line 90:
</script>
</script>
<img src=""  alt="YourMom is offline">
<img src=""  alt="YourMom is offline">
 
</<syntaxhighlight>
</code>

Revision as of 16:28, 20 July 2020

Api Urls

https://s200.etm.dev/auth   <- Test the credentials 
https://s200.etm.dev/transaction/[UserName]/latest
https://s200.etm.dev/shop/[UserName]/[world]
https://s200.etm.dev/userstats/[UserName]/[datetime]  (2020-05-24T14:00) partial allowed!
https://s200.etm.dev/user/[UserName]
https://s200.etm.dev/server/playerlocations/[world]   <-- Needs /user ksonpubliclocation ON !
https://s200.etm.dev/land/[UserName]/[world]

Transactions for the whole day:
https://s200.etm.dev/transaction/Kademlia/day/2020-05-31T00:00 // Hit the day you want with the datetime
https://s200.etm.dev/transaction/Kademlia/month/2020-05-01   // Hit the month you want with the date

UUID Lookups:
https://s200.etm.dev/mojang/name/{uuid}
https://s200.etm.dev/mojang/names  POST with a list of UUID[]

Pods:
https://s200.etm.dev/pod/{username:.+}/{podName:.+}
Currently only one working: https://s200.etm.dev/pod/NAME/Technology

These calls need authentication. To auth you need to:
1. Go on the server and enable the api calls for your account with: /user api on
2. Copy your secret with: /user secret
3. Call the URL with HEADER-Parameter "Auth" and value: {"userName":"USERNAME","secret":"YOURSECRET"}


curl -H "Auth:{\"userName\":\"Kademlia\",\"secret\":\"xxxxxxxxxxxxxx\"}" https://s200.etm.dev/transaction/Kademlia/latest


curl -H "Auth:{\"userName\":\"tigerjunge15\",\"secret\":\"F4kWNs7UKfUss7XKdJE8P9DOwFrQB2RvTYx+hPFWGoGZaC/NrSIyEg==\"}" https://s200.etm.dev/transaction/tigerjunge15/latest

https://s200.etm.dev/userstats/tigerjunge15/2020
https://s200.etm.dev/userstats/tigerjunge15/2020-05
https://s200.etm.dev/userstats/tigerjunge15/05-24
https://s200.etm.dev/userstats/tigerjunge15/2020-05-24

Latest transactions example

Http-Header "Auth" with value: {"userName":"tigerjunge15","secret":"F4kWNs7UKfUss7XKdJE8P9DOwFrQB2RvTYx+hPFWGoGZaC/NrSIyEg=="}"

Url: https://s200.etm.dev/transaction/tigerjunge15/latest


{"userName":"Lasergott","secret":"fe6FeQsgDDWybNAZsXEHsdgQ7nIXprUd/feIBRMD4ifqdvWnV98bnA=="}"

Desktop interaction


<syntaxhighlight lang="javascript">

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> <script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>

<script>

const userName = "FakeStuff" const secret = "ysheh+pGrU01DkXN3/qilYcvBu/a0NsIrxrBWKsqJMzvLH026Cj1zA=="; const auth = { 'Auth': `{"userName":"${userName}","secret":"${secret}"}` }

$(document).ready(function() {

   $('img').attr('src', `https://s200.etm.dev/desktop/screenshot/${userName}/`);
   
   $("img").on("click", function(event) {
       var x = event.pageX - this.offsetLeft;
       var y = event.pageY - this.offsetTop;
       onClick(x,y);
   });
   function onClick(x, z) {
   
   axios.post(`https://s200.etm.dev/desktop/screenshot/${userName}`, { x, z }, 
    { responseType: 'arraybuffer', headers: auth}
    )  
   .then(( response ) => {
       var b64 = btoa(String.fromCharCode.apply(null, new Uint8Array( response.data)));
   	$('img').attr('src', 'data:image/png;base64,'+b64)
   })
   .catch((e) => {
 	// handle error
 	console.log(e)
 })

} }); </script> <img src="" alt="YourMom is offline"> </<syntaxhighlight>