Advertisement
Guest User

Untitled

a guest
Jun 14th, 2018
389
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.94 KB | None | 0 0
  1. Hi,
  2.  
  3. As you guys may have read, I started a service where people can get their own private roblox market (https://v3rmillion.net/showthread.php?tid=587051).
  4. Now I am releasing the Roblox Group Payout WEB API. Literally a payout API u can use! Even a skid of 8 years old can use it.
  5. You can both use GET and POST. I recommend POST for the security.
  6.  
  7. https://freewebhost.fun/openapi.php
  8. [quote]Variables:
  9. username - username of account that pays out
  10. password - password of account that pays out
  11. userToPay - username of the use that will get payed out
  12. amount - amount of robux to payout
  13. group_id - id of group where to robux has to be payed from
  14. redirect - (OPTIONAL ONLY WITH GET) redirect user to a other url[/quote]
  15.  
  16.  
  17. Example 1: POST
  18. [php]<?php
  19. $ch = curl_init();
  20. curl_setopt($ch, CURLOPT_URL,"https://freewebhost.fun/openapi.php");
  21. curl_setopt($ch, CURLOPT_POSTFIELDS, "username=YOUR_USERNAME&password=YOUR_PASSWORD&userToPay=USER_TO_PAY&amount=AMOUN_TO_PAY&group_id=GROUP_ID");
  22. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  23. $server_output = curl_exec ($ch);
  24. curl_close ($ch);
  25.  
  26. if ($server_output = "DONE") {
  27. // DO SOMETHING WHEN IT WORKS
  28. } else {
  29. // DO SOMETHING IF IT GIVES A ERROR
  30. }
  31. ?>[/php]
  32.  
  33. Example 2:GET
  34. [code]<meta http-equiv="refresh" content="0; url=https://freewebhost.fun/openapi.php?username=YOUR_USERNAME&password=YOUR_PASSWORD&userToPay=USER_TO_PAY&amount=AMOUN_TO_PAY&group_id=GROUP_ID&redirect=URL_TO_REDIRECT_TO" />[/code]
  35.  
  36. Coming up next:
  37. [quote]
  38. - API code <- you can get it for free at our Discord server
  39. - RAP check API
  40. - Trade API
  41. [/quote]
  42.  
  43. Outputs:
  44. [quote]
  45. DONE - Succes
  46. Bad RequestDONE - Not enough group funds / not able to payout
  47. This is a fatal error! Contact Hattorius#9999 immidatly! - Username or password wrong. Ur API's are outdated
  48. [/quote]
  49.  
  50. To make clear, I dont log any usernames/password/cookies. This is the only thing I see:
  51. [img]https://i.imgur.com/ilwc4p8.png[/img]
  52.  
  53. Contact:
  54. Hattorius#9999
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement