forked from manumiranda/twitch-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
twitch-api.js
1181 lines (1107 loc) · 34.4 KB
/
twitch-api.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
'use strict';
var request = require("request");
var baseUrl = 'https://api.twitch.tv/kraken';
var authorizePath = '/oauth2/authorize';
var accessTokenPath = '/oauth2/token';
var Twitch = function (options){
if (!(this instanceof Twitch))
return new Twitch(options);
this.clientId = options.clientId;
this.clientSecret = options.clientSecret;
this.redirectUri = options.redirectUri;
this.scopes = options.scopes || [];
return this;
};
/**
* The callback that will handle the response
* @callback requestCallback
* @param err {Object} In request produces an error, it will be stored in
* this parameter. null if the request was successful
* @param body {Object} The body of the response if the request was successful
*/
/**
* Creates a request to Twitch.tv v3 API
*
* @access private
*
* @param options {Object} The options of the request
* @param [options.method] {String} The HTTP method.
* 'GET', 'POST', 'PUT' or 'DELETE'. Defaults to 'GET'
* @param options.path {String} The RELATIVE path of the request
* @param [options.accessToken] {String} The accessToken of the
* authenticated user
* @param [options.body] {JSON} The JSON data to send with the request
* @param [parameters] {Object} The URL parameters of the request in JSON format
*/
Twitch.prototype._createRequest = function(options, parameters){
return {
method: options.method,
url: baseUrl + options.path,
qs: parameters,
headers: {
'Authorization': options.accessToken?'OAuth ' + options.accessToken : undefined,
'Accept': 'Accept: application/vnd.twitchtv.v3+json',
'Client-ID': this.clientId
},
body: options.body,
json: true
};
};
/**
* Forges and executes a request against Twitch.tv's v3 API
*
* @access private
*
* @param options {Object} The options of the request
* @param [options.method] {String} The HTTP method.
* 'GET', 'POST', 'PUT' or 'DELETE'. Defaults to 'GET'
* @param options.path {String} The RELATIVE path of the request
* @param [options.accessToken] {String} The accessToken of the
* authenticated user
* @param [options.body] {JSON} The JSON data to send with the request
* @param [parameters] {Object} The URL parameters of the request in JSON format
* @param callback {requestCallback} The callback that will manage the response
*/
Twitch.prototype._executeRequest = function(options, parameters, callback){
// check for optional parameters
if(!callback){
callback = parameters;
parameters = undefined;
}
var req = this._createRequest(options, parameters);
request(req, function(err, response, body){
if (!err && body && !body.error){
callback(null, body);
} else {
callback(err || body);
}
});
};
/**
* Returns the full URL to witch you must send your user in order to authorize
* your application
*
* @returns {String} The the full URL to witch you must send your user for
* authorization
*/
Twitch.prototype.getAuthorizationUrl = function(){
var scopesParam = '';
for (var i = 0; i < this.scopes.length; i++){
scopesParam += this.scopes[i];
if (i != (this.scopes.length - 1)){
scopesParam += '+';
}
}
return baseUrl + authorizePath +
'?response_type=code' +
'&client_id=' + this.clientId +
'&redirect_uri=' + this.redirectUri +
'&scope=' + scopesParam;
};
/**
* Requests Twitch.tv for an accessCode for your authorized user
*
* @param code {String} The code that twitch.tv's API sent in the
* redirection URI parameters when the user authorized your application
* @param callback {requestCallback} The callback that will manage the response
*/
Twitch.prototype.getAccessToken = function(code, callback){
var parameters = {
client_id: this.clientId,
client_secret: this.clientSecret,
grant_type: 'authorization_code',
redirect_uri: this.redirectUri,
code: code
};
this._executeRequest(
{
method: 'POST',
path: accessTokenPath,
},
parameters,
callback
);
};
/**
* Requests Twitch.tv for an accessCode for using your refresh token
*
* @param refreshToken {String} The code that twitch.tv's API sent in the
* getAccessToken response
* @param callback {requestCallback} The callback that will manage the response
*/
Twitch.prototype.refreshAccessToken = function(refreshToken, callback){
var parameters = {
client_id: this.clientId,
client_secret: this.clientSecret,
refresh_token : refreshToken,
grant_type: 'refresh_token',
redirect_uri: this.redirectUri
};
this._executeRequest(
{
method: 'POST',
path: accessTokenPath,
},
parameters,
callback
);
};
// ###### # ####### ##### # # #####
// # # # # # # # # # # #
// # # # # # # # # #
// ###### # # # # ### #####
// # # # # # # # # #
// # # # # # # # # # # #
// ###### ####### ####### ##### # # #####
/**
* Get user's block list
*
* GET /users/:user/blocks
*
* @param user {String} The user name of wich you want to get the block list,
* authenticated by accesToken
* @param accessToken {String} The token representing the authenticated user
* @param [parameters] {Object} The parameters of the API endpoint
* @param callback {requestCallback} The callback that will manage the response
*/
Twitch.prototype.getBlocks =
function (user, accessToken, parameters, callback){
this._executeRequest(
{
method: 'GET',
path: '/users/' + user + '/blocks',
accessToken: accessToken,
},
parameters,
callback
);
};
/**
* Add target to user's block list
*
* PUT /users/:user/blocks/:target
*
* @param user {String} The user name of the user
* @param accessToken {String} The token representing the authenticated user
* @param target {String} the user name your user wants to block
* @param callback {requestCallback} The callback that will manage the response
*/
Twitch.prototype.addBlock = function(user, accessToken, target, callback){
this._executeRequest(
{
method: 'PUT',
path: '/users/' + user + '/blocks/' + target,
accessToken: accessToken,
},
callback
);
};
/**
* Delete target from user's block list
*
* DELETE /users/:user/blocks/:target
*
* @param user {String} The user name of the user
* @param accessToken {String} The token representing the authenticated user
* @param target {String} the user name your user wants to unblock
* @param callback {requestCallback} The callback that will manage the response
*/
Twitch.prototype.removeBlock =
function(user, accessToken, target, callback){
this._executeRequest(
{
method: 'DELETE',
path: '/users/' + user + '/blocks/' + target,
accessToken: accessToken,
},
callback
);
};
// ##### # # # # # # # ####### # #####
// # # # # # # ## # ## # # # # #
// # # # # # # # # # # # # # #
// # ####### # # # # # # # # ##### # #####
// # # # ####### # # # # # # # # #
// # # # # # # # ## # ## # # # #
// ##### # # # # # # # # ####### ####### #####
/**
* Returns a channel object.
*
* GET /channels/:channel/
*
* @param channel {String} The channel name
* @param callback {requestCallback} The callback that will manage the response
*/
Twitch.prototype.getChannel = function(channel, callback){
this._executeRequest(
{
method: 'GET',
path: '/channels/' + channel
},
callback
);
};
/**
* Returns a channel object of authenticated user.
* Channel object includes stream key.
*
* GET /channel
*
* @param accessToken {String} The token representing the authenticated user
* @param callback {requestCallback} The callback that will manage the response
*/
Twitch.prototype.getAuthenticatedUserChannel = function(accessToken, callback){
this._executeRequest(
{
method: 'GET',
path: '/channel',
accessToken: accessToken
},
callback
);
};
/**
* Returns a list of user objects who are editors of channel.
* The user should be the owner (maybe editor?) of the channel
*
* GET /channels/:channel/editors
*
* @param channel {String} The channel name
* @param accessToken {String} The token representing the authenticated user
* @param callback {requestCallback} The callback that will manage the response
*/
Twitch.prototype.getChannelEditors = function(channel, accessToken, callback){
this._executeRequest(
{
method: 'GET',
path: '/channels/' + channel + '/editors',
accessToken: accessToken
},
callback
);
};
/**
* Update channel's status or game.
*
* PUT /channels/:channel/
*
* @param channel {String} The channel name
* @param accessToken {String} The token representing the authenticated user
* @param channelOptions {Object} The options you want to change in JSON format
* @param channelOptions.channel {JSON} The real options are wrapped here
* @param channelOptions.channel.status {String} The new status of the channel
* @param channelOptions.channel.game {String} The new game of the channel
* @param channelOptions.channel.delay {Number} The delay of the channel
* @param callback {requestCallback} The callback that will manage the response
*/
Twitch.prototype.updateChannel =
function (channel, accessToken, channelOptions, callback) {
this._executeRequest(
{
method: 'PUT',
path: '/channels/' + channel,
accessToken: accessToken,
body: channelOptions
},
callback
);
};
/**
* Resets channel's stream key.
*
* DELETE /channels/:channel/stream_key
*
* @param channel {String} The channel name
* @param accessToken {String} The token representing the authenticated user
* @param callback {requestCallback} The callback that will manage the response
*/
Twitch.prototype.resetStreamKey =
function (channel, accessToken, callback) {
this._executeRequest(
{
method: 'DELETE',
path: '/channels/' + channel + '/stream_key',
accessToken: accessToken
},
callback
);
};
/**
* Start commercial on channel.
*
* POST /channels/:channel/commercial
*
* @param channel {String} The channel name
* @param accessToken {String} The token representing the authenticated user
* @param [parameters] {Object} The parameters of the request
* @param [parameters.length] {Number} The length of the commercial break in
* seconds. One of 30, 60, 90, 120, 150 or 180. Defaults to 30.
* @param callback {requestCallback} The callback that will manage the response
*/
Twitch.prototype.startCommercial =
function (channel, accessToken, parameters, callback) {
this._executeRequest(
{
method: 'POST',
path: '/channels/' + channel + '/commercial',
accessToken: accessToken
},
parameters,
callback
);
};
/**
* Returns a list of team objects channel belongs to.
*
* GET /channels/:channel/teams
*
* @param channel {String} The channel name
* @param callback {requestCallback} The callback that will manage the response
*/
Twitch.prototype.getChannelTeams = function(channel, callback){
this._executeRequest(
{
method: 'GET',
path: '/channels/' + channel + '/teams'
},
callback
);
};
// ##### # # # #######
// # # # # # # #
// # # # # # #
// # ####### # # #
// # # # ####### #
// # # # # # # #
// ##### # # # # #
/**
* Returns a links object to all other chat endpoints.
*
* GET /chat/:channel
*
* @param channel {String} The channel name
* @param callback {requestCallback} The callback that will manage the response
*/
Twitch.prototype.getChannelChat = function(channel, callback){
this._executeRequest(
{
method: 'GET',
path: '/chat/' + channel,
},
callback
);
};
/**
* Returns a list of all emoticon objects for Twitch.
*
* GET /chat/emoticons
*
* @param callback {requestCallback} The callback that will manage the response
*/
Twitch.prototype.getEmoticons = function(callback){
this._executeRequest(
{
method: 'GET',
path: '/chat/emoticons',
},
callback
);
};
/**
* Returns a list of chat badges that can be used in the channel's chat.
*
* GET /chat/:channel/badges
*
* @param channel {String} The channel name
* @param callback {requestCallback} The callback that will manage the response
*/
Twitch.prototype.getChannelBadges = function(channel, callback){
this._executeRequest(
{
method: 'GET',
path: '/chat/' + channel + '/badges',
},
callback
);
};
// ####### ####### # # ####### # # #####
// # # # # # # # # # # # #
// # # # # # # # # # # #
// ##### # # # # # # # # # #####
// # # # # # # # # # # #
// # # # # # # # # # # # #
// # ####### ####### ####### ####### ## ## #####
/**
* Returns a list of follow objects.
*
* GET /channels/:channel/follows
*
* @param channel {String} The channel name
* @param [parameters] {Object} The parameters of the request
* @param [parameters.limit] {Number} Maximum number of follow objects.
* Maximum is 100, defaults to 25
* @param [parameters.offset] {Number} Follow object offset for pagination.
* Defaults to 0
* @param [parameters.direction] {String} Creation date sorting direction.
* Defaults to desc. Valid values are asc and desc.
* @param callback {requestCallback} The callback that will manage the response
*/
Twitch.prototype.getChannelFollows = function(channel, parameters, callback){
this._executeRequest(
{
method: 'GET',
path: '/channels/' + channel + '/follows',
},
parameters,
callback
);
};
/**
* Returns a list of follow objects
*
* GET /users/:user/follows/channels
*
* @param user {String} The user name
* @param [parameters] {Object} The parameters of the request
* @param [parameters.limit] {Number} Maximum number of follow objects.
* Maximum is 100, defaults to 25
* @param [parameters.offset] {Number} Follow object offset for pagination.
* Defaults to 0
* @param [parameters.direction] {String} Creation date sorting direction.
* Defaults to desc. Valid values are asc and desc.
* @param [parameters.sortby] {String} Sort key. Defaults to created_at.
* Valid values are created_at, last_broadcast, and login.
* Defaults to desc. Valid values are asc and desc.
* @param callback {requestCallback} The callback that will manage the response
*/
Twitch.prototype.getUserFollowedChannels = function(user, parameters, callback){
this._executeRequest(
{
method: 'GET',
path: '/users/' + user + '/follows/channels',
},
parameters,
callback
);
};
/**
* Returns a follow object if user is following channel, 404 otherwise.
*
* GET /users/:user/follows/channels/:target
*
* @param user {String} The user name
* @param channel {String} The channel name
* @param callback {requestCallback} The callback that will manage the response
*/
Twitch.prototype.getUserFollowsChannel = function(user, channel, callback){
this._executeRequest(
{
method: 'GET',
path: '/users/' + user + '/follows/channels/' + channel,
},
callback
);
};
/**
* Adds user to channel's followers.
*
* PUT /users/:user/follows/channels/:target
*
* @param user {String} The user name
* @param channel {String} The channel name
* @param accessToken {String} The token representing the authenticated user
* @param [parameters] {Object} The parameters of the request
* @param [parameters.notifications] {boolean} Whether user should receive
* notifications when channel goes live. Defaults to false.
* @param callback {requestCallback} The callback that will manage the response
*/
Twitch.prototype.userFollowChannel =
function(user, channel, accessToken, parameters, callback){
this._executeRequest(
{
method: 'PUT',
path: '/users/' + user + '/follows/channels/' + channel,
accessToken: accessToken
},
parameters,
callback
);
};
/**
* Removes user from channel's followers.
*
* DELETE /users/:user/follows/channels/:target
*
* @param user {String} The user name
* @param channel {String} The channel name
* @param accessToken {String} The token representing the authenticated user
* @param callback {requestCallback} The callback that will manage the response
*/
Twitch.prototype.userUnfollowChannel =
function(user, channel, accessToken, callback){
this._executeRequest(
{
method: 'DELETE',
path: '/users/' + user + '/follows/channels/' + channel,
accessToken: accessToken
},
callback
);
};
// ##### # # # ####### #####
// # # # # ## ## # # #
// # # # # # # # # #
// # #### # # # # # ##### #####
// # # ####### # # # #
// # # # # # # # # #
// ##### # # # # ####### #####
/**
* Returns a list of games objects sorted by number of current viewers
* on Twitch, most popular first.
*
* GET /games/top
*
* @param [parameters] {Object} The parameters of the request
* @param [parameters.limit] {Number} Maximum number of games.
* Maximum is 100, defaults to 25
* @param [parameters.offset] {Number} Follow object offset for pagination.
* Defaults to 0
* @param callback {requestCallback} The callback that will manage the response
*/
Twitch.prototype.getTopGames = function(parameters, callback){
this._executeRequest(
{
method: 'GET',
path: '/games/top'
},
parameters,
callback
);
};
// ### # # ##### ####### ##### ####### #####
// # ## # # # # # # # # #
// # # # # # # # # #
// # # # # # #### ##### ##### # #####
// # # # # # # # # # #
// # # ## # # # # # # # #
// ### # # ##### ####### ##### # #####
/**
* Returns a list of ingest objects.
*
* GET /ingests/
*
* @param callback {requestCallback} The callback that will manage the response
*/
Twitch.prototype.getIngests = function(callback){
this._executeRequest(
{
method: 'GET',
path: '/ingests'
},
callback
);
};
// ###### ####### ####### #######
// # # # # # # #
// # # # # # # #
// ###### # # # # #
// # # # # # # #
// # # # # # # #
// # # ####### ####### #
/**
* Basic information about the API and authentication status.
* If you are accessToken is provided, the response includes the status of your
* token and links to other related resources.
*
* GET /
*
* @param [accessToken] {String} The token representing the authenticated user
* @param callback {requestCallback} The callback that will manage the response
*/
Twitch.prototype.getRoot = function(accessToken, callback){
// acccessToken is optional
if (!callback){
callback = accessToken;
accessToken = undefined;
}
this._executeRequest(
{
method: 'GET',
path: '/',
accessToken: accessToken
},
callback
);
};
// ##### ####### # ###### ##### # #
// # # # # # # # # # # #
// # # # # # # # # #
// ##### ##### # # ###### # #######
// # # ####### # # # # #
// # # # # # # # # # # #
// ##### ####### # # # # ##### # #
/**
* Convenience method to search by entity
*
* @access private
*
* @param entity {String} Entity to search by
* @param [parameters] {Object} Parameters of the seach, content depends on entity
* @param accessToken {String} The token representing the authenticated user
*/
Twitch.prototype._search = function(entity, parameters, callback){
this._executeRequest(
{
method: 'GET',
path: '/search/' + entity
},
parameters,
callback
);
};
/**
* Returns a list of channel objects matching the search query.
*
* GET /search/channels
*
* @param parameters {Object} The parameters of the request
* @param parameters.query {String} Search query. The field can also be
* parameters.q
* @param [parameters.limit] {Number} Maximum number of channel objects.
* Maximum is 100, defaults to 25
* @param [parameters.offset] {Number} Follow object offset for pagination.
* Defaults to 0
* @param callback {requestCallback} The callback that will manage the response
*/
Twitch.prototype.searchChannels = function(parameters, callback){
this._search('channels', parameters, callback);
};
/**
* Returns a list of stream objects matching the search query.
*
* GET /search/streams
*
* @param parameters {Object} The parameters of the request
* @param parameters.query {String} Search query. The field can also be
* parameters.q
* @param [parameters.limit] {Number} Maximum number of stream objects.
* Maximum is 100, defaults to 25
* @param [parameters.offset] {Number} Follow object offset for pagination.
* Defaults to 0
* @param [parameters.hls] {boolean} If set to true, only returns streams
* using HLS. If set to false, only returns streams that are non-HLS.
* @param callback {requestCallback} The callback that will manage the response
*/
Twitch.prototype.searchStreams = function(parameters, callback){
this._search('streams', parameters, callback);
};
/**
* Returns a list of game objects matching the search query.
*
* GET /search/games
*
* @param parameters {Object} The parameters of the request
* @param parameters.query {String} Search query. The field can also be
* parameters.q
* @param parameters.type {String} Only accepts suggest: Suggests a list of
* games similar to query
* @param [parameters.live] {boolean} If true, only returns games that are
* live on at least one channel.
* @param callback {requestCallback} The callback that will manage the response
*/
Twitch.prototype.searchGames = function(parameters, callback){
this._search('games', parameters, callback);
};
// ##### ####### ###### ####### # # # #####
// # # # # # # # # ## ## # #
// # # # # # # # # # # # #
// ##### # ###### ##### # # # # # #####
// # # # # # ####### # # #
// # # # # # # # # # # # #
// ##### # # # ####### # # # # #####
/**
* Returns a stream object if live.
*
* GET /streams/:channel/
*
* @param channel {String} The channel name
* @param callback {requestCallback} The callback that will manage the response
*/
Twitch.prototype.getChannelStream = function (channel, callback) {
this._executeRequest(
{
method: 'GET',
path: '/streams/' + channel
},
callback
);
};
/**
* Returns a list of stream objects that are queried by a number of parameters
* sorted by number of viewers descending.
*
* GET /streams
*
* @param [parameters] {Object} The parameters of the request
* @param [parameters.game] {String} Streams categorized under game.
* @param [parameters.channel] {String} Streams from a comma separated
* list of channels.
* @param [parameters.limit] {Number} Maximum number of streams.
* Maximum is 100, defaults to 25
* @param [parameters.offset] {Number} Follow object offset for pagination.
* Defaults to 0
* @param [parameters.client_id] {String} Only shows streams from
* applications of client_id.
* @param callback {requestCallback} The callback that will manage the response
*/
Twitch.prototype.getStreams = function (parameters, callback) {
this._executeRequest(
{
method: 'GET',
path: '/streams'
},
parameters,
callback
);
};
/**
* Returns a list of featured (promoted) stream objects.
*
* GET /streams/featured
*
* @param [parameters] {Object} The parameters of the request
* @param [parameters.limit] {Number} Maximum number of streams.
* Maximum is 100, defaults to 25
* @param [parameters.offset] {Number} Follow object offset for pagination.
* Defaults to 0
* @param callback {requestCallback} The callback that will manage the response
*/
Twitch.prototype.getFeaturedStreams = function (parameters, callback) {
this._executeRequest(
{
method: 'GET',
path: '/streams/featured'
},
parameters,
callback
);
};
/**
* Returns a summary of current streams.
*
* GET /streams/summary
*
* @param [parameters] {Object} The parameters of the request
* @param [parameters.game] {String} Streams categorized under game.
* @param callback {requestCallback} The callback that will manage the response
*/
Twitch.prototype.getStreamsSummary = function (parameters, callback) {
this._executeRequest(
{
method: 'GET',
path: '/streams/summary'
},
parameters,
callback
);
};
// ##### # # ###### #####
// # # # # # # # #
// # # # # # #
// ##### # # ###### #####
// # # # # # # ###
// # # # # # # # # ###
// ##### ##### ###### ##### ###
/**
* Returns a list of subscription objects sorted by subscription relationship
* creation date which contain users subscribed to channel.
*
* GET /channels/:channel/subscriptions
*
* @param channel {String} The channel name
* @param accessToken {String} The token representing the authenticated user
* @param [parameters] {Object} The parameters of the request
* @param [parameters.limit] {Number} Maximum number of subscription objects.
* Maximum is 100, defaults to 25
* @param [parameters.offset] {Number} Follow object offset for pagination.
* Defaults to 0
* @param [parameters.direction] {String} Creation date sorting direction.
* Defaults to asc. Valid values are asc and desc.
*/
Twitch.prototype.getChannelSubscriptions =
function (channel, accessToken, parameters, callback) {
this._executeRequest(
{
method: 'GET',
path: '/channels/' + channel + '/subscriptions',
accessToken: accessToken
},
parameters,
callback
);
};
/**
* Returns a subscription object which includes the user if that user
* is subscribed. Requires authentication for channel.
* The authenticated user must be the owner of the channel
*
* GET /channels/:channel/subscriptions/:user
*
* @param user {String} The user name
* @param channel {String} The channel name
* @param accessToken {String} The token representing the authenticated user
* @param callback {requestCallback} The callback that will manage the response
*/
Twitch.prototype.getUserSubscriptionToChannel =
function (user, channel, accessToken, callback) {
this._executeRequest(
{
method: 'GET',
path: '/channels/' + channel + '/subscriptions/' + user,
accessToken: accessToken
},
callback
);
};
/**
* Returns a channel object that user subscribes to. user must be authenticated
* by accessToken.
*
* GET /users/:user/subscriptions/:channel
*
* @param user {String} The user name
* @param channel {String} The channel name
* @param accessToken {String} The token representing the authenticated user
* @param callback {requestCallback} The callback that will manage the response
*/
Twitch.prototype.getChannelSubscriptionOfUser =
function (user, channel, accessToken, callback) {
this._executeRequest(
{
method: 'GET',
path: '/users/' + user + '/subscriptions/' + channel,
accessToken: accessToken
},
callback
);
};
// ####### ####### # # # #####
// # # # # ## ## # #
// # # # # # # # # #
// # ##### # # # # # #####
// # # ####### # # #
// # # # # # # # #
// # ####### # # # # #####
/**
* Returns a list of active teams.
*
* GET /teams/
*
* @param [parameters] {Object} The parameters of the request
* @param [parameters.limit] {Number} Maximum number of teams.
* Maximum is 100, defaults to 25
* @param [parameters.offset] {Number} Follow object offset for pagination.
* Defaults to 0
* @param callback {requestCallback} The callback that will manage the response
*/
Twitch.prototype.getTeams = function (parameters, callback) {
this._executeRequest(
{
method: 'GET',
path: '/teams'
},
parameters,
callback
);
};
/**
* Returns a team object for team.
*
* GET /teams/:team/
*
* @param team {String} The team name
* @param callback {requestCallback} The callback that will manage the response
*/
Twitch.prototype.getTeam = function (team, callback) {
this._executeRequest(
{
method: 'GET',
path: '/teams/' + team
},
callback
);
};
// # # ##### ####### ###### #####
// # # # # # # # # #