(I’m sorry for my bad english, I’m french…)tmi.js  but it doesn’t react to follow, sub and cheer…
How can I do ? Or which npm module shoud I use ?
Or maybe how can I get the follower list ?
Thank you.
             
            
              
            
           
          
            
              
                Alca  
              
                  
                    October 2, 2017,  5:56pm
                   
                  2 
               
             
            
              Followers are not sent through the IRC so therefore tmi.js cannot react to it. It does react to subscription and cheers using these events:
Subscription  - Username has subscribed to a channel.
client.on("resub", function (channel, username, months, message, userstate, methods) {
    // Do your stuff.
});
 
Resub  - Username has resubbed on a channel.
client.on("subscription", function (channel, username, method, message, userstate) {
    // Do your stuff.
});
 
 
For followers you will need to use the Twitch API yourself. Either Kraken v5  or the new Helix .
             
            
              
                
            
           
          
            
            
              Thx for solving 2/3 of my problem !
I would like to use kraken v5 but it does work, it always write “{“error”:“Bad Request”,“status”:400,“message”:“No client id specified”}”
             
            
              
            
           
          
            
              
                Dist  
              
                  
                    October 2, 2017,  6:31pm
                   
                  4 
               
             
            
              That’s because with all (well, almost all) API requests you need to include your applications client id. The Twitch Docs  explain how to obtain a client-id
             
            
              1 Like 
            
            
           
          
            
            
              Ok, I got my _id and my Client ID but could you say me what’s the url to find the last follow please?https://api.twitch.tv/kraken/channels/MY_ID/follows https://api.twitch.tv/kraken/channels/MY_CLIENT_ID/follows 
             
            
              
            
           
          
            
              
                Alca  
              
                  
                    October 2, 2017,  8:19pm
                   
                  6 
               
             
            
            
              1 Like 
            
            
           
          
            
            
              Thank you for your help !
             
            
              
            
           
          
            
              
                system  
              
                  
                    November 1, 2017,  9:17pm
                   
                  8 
               
             
            
              This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.