Advertisement
irokemr

api emoticonos twitch

Nov 24th, 2019
408
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.35 KB | None | 0 0
  1. <?php
  2. error_reporting(0);
  3.  
  4. $context = stream_context_create($opts);
  5.  
  6.  
  7.  
  8. $usuario = $_POST["usuario"];
  9. $file = file_get_contents("https://todocodigos.000webhostapp.com/twitch/emoticonos/emoticonos1.php?usuario=$usuario", false, $context);
  10.  
  11.  
  12.  
  13. $image_data = json_decode($file, true);
  14. $twitch = json_decode($file, true);
  15.  
  16.  
  17. $news = json_decode($news, true);
  18. ?>
  19.    
  20.    
  21.  
  22.          
  23.      
  24.  <?php  for ($i=0; $i < count($image_data['emoticons']); $i ++) {
  25.    
  26.  
  27. ?>  
  28. <br>
  29. <b>Emoticono:</b> => <?php echo $twitch['emoticons'][$i]['url']?>
  30. <br>
  31. <b>Nombre del emoticono:</b> => <?php echo $twitch['emoticons'][$i]['regex']?>
  32. <br>
  33. <?php }?>
  34.  
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  <form action="" method="POST">
  41.  <input type="text" size="50" name="usuario" id="usuario" placeholder="Escribe el nombre del streamer">
  42.  
  43.  <input type="submit" value="Ver emotes del streamer">
  44.   </form>
  45.   <br>
  46.   <br>
  47.   <h3>
  48. API TWITCH:
  49. <br>
  50.  
  51. <a href="https://todocodigos.000webhostapp.com/twitch/api/api.php" target="_blank">api twitch</a>
  52. <br>
  53. <a href="https://pastebin.com/B9vy5w0y" target="_blank">Api emoticonos twitch</a>✔️
  54. <br>
  55. <a href="https://todocodigos.000webhostapp.com/twitch/seguidores/seguidores1.php" target="_blank">Api twitch seguidores</a>
  56. <br>
  57. <a href="https://todocodigos.000webhostapp.com/twitch/clips/clip1.php" target="_blank">Api twitch clips</a>
  58.     </h3>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement