Advertisement
irokemr

api twitch seguidores

Nov 25th, 2019
687
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.61 KB | None | 0 0
  1. <?php
  2. error_reporting(0);
  3.  
  4. $context = stream_context_create($opts);
  5.  
  6.  
  7.     $usuario = $_POST['usuario'];
  8. $numerolimite = $_POST['numerolimite'];
  9. $file = file_get_contents("https://todocodigos.000webhostapp.com/twitch/seguidores/seguidores.php?usuario=$usuario&numero=$numerolimite", false, $context);
  10.  
  11.  
  12.  
  13.  
  14. $image_data = json_decode($file, true);
  15. $twitch = json_decode($file, true);
  16.  
  17.  
  18. $news = json_decode($news, true);
  19.  
  20.  
  21.  
  22.  
  23.  
  24.  
  25. ?>  
  26.  
  27.  
  28.  
  29. <?php  for ($i = 0; $i < count($image_data['follows']); $i ++) {
  30.    
  31.  
  32.  
  33. ?>
  34.  
  35. <br>
  36.    <b>Seguidor:</b> => <?php echo $twitch['follows'][$i]['user']['name']?>
  37.    <br>
  38.    
  39.   <b>Biografia:</b> => <?php echo $twitch['follows'][$i]['user']['bio']?>
  40.    <br>
  41.    
  42.    <b>Logo:</b> => <?php echo $twitch['follows'][$i]['user']['logo']?>
  43.    <br>
  44.  
  45.    
  46.  
  47.  
  48. <?php }?>
  49.  
  50.  
  51.  <form action="" method="POST">
  52.  <input type="text" size="50" name="usuario" id="usuario" placeholder="Escribe el nombre del streamer">
  53.  <br>
  54. <br>
  55. <input type="text" size="50" name="numerolimite" id="numerolimite" placeholder="Escribe un numero del 1 al 100">
  56.  <input type="submit" value="Ver seguidores">
  57.   </form>
  58.  
  59.  
  60.  <br>
  61.  
  62.  
  63.  
  64. <h3>API TWITCH:
  65. <br>
  66. <a href="https://todocodigos.000webhostapp.com/twitch/api/api.php" target="_blank">api twitch</a>
  67. <br>
  68. <a href="https://todocodigos.000webhostapp.com/twitch/emoticonos/emoticonos.php" target="_blank">Api emoticonos twitch</a>
  69. <br>
  70. <a href="https://pastebin.com/KjDemG1i" target="_blank">Api twitch seguidores</a>✔️
  71. <br>
  72. <a href="https://todocodigos.000webhostapp.com/twitch/clips/clip1.php" target="_blank">Api twitch clips</a>
  73.    
  74. </h3>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement