-
Notifications
You must be signed in to change notification settings - Fork 0
/
apiary.apib
2136 lines (1727 loc) · 75.4 KB
/
apiary.apib
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
FORMAT: 1A
HOST: http://staging.api.mtfan.mediotiempo.com
# MTSocial API definition testing
API de MT Fan test
# Group Login
<a id="login" ></a>
To login into the MTSocial API API, use following calls:
- 1. `POST` your credentials in JSON body to the *login* resource. An **token** is returned back.
- 2. Use the **token** in your API calls header **X-Auth-Token**.
Remember that TT Token has **limited validity**. Once you received 401 Unauthorized Response, you need to GET new TT Token.
###Login Properties
- username (string) : User's email
- password (string) : User's password
## /login
### POST
This resource is the first. Use it to log into the API.
`Please use your MTSocial API account credentials for API calls.`
+ Request (application/json)
+ Headers
Accept: application/json
+ Body
{"username":"[email protected]","password":"YourPassword"}
+ Response 200 (application/json)
+ Body
{"token":"8ckoqbsr1ae90sfd8jvkfp4bqq4r80ac","person":{"id":"7d3c28b7-9d42-45d5-8a71-ad285842505b","name":"Tomas Salazar","email":"[email protected]","age":null,"gender":null}}
## /api/validate
Basic service to validate token, this is for testing.
Use the token retrive from login call as header X-Auth-Token.
### GET
+ Headers
X-Auth-Token: {token}
+ Response 200 (application/json)
+ Body
{"token":"o5245j7tn44hf1gvalbvkvgjk5t9s9cv","roles":["ROLE_ADMIN","ROLE_ROOT”]}
## /v1/people/
Get basic info for logged person
### Person details [GET]
+ Response 200 (application/json)
{"id":1,"name":"Domingo Suarez Torres","email":"[email protected]"}
# Group Register
<a id="register" ></a>
To register into the MTSocial API API, use following calls:
- 1. `POST` your personal data in JSON body to the *register* resource. An **token** is returned back.
- 2. Use the **token** in your API calls header **X-Auth-Token**.
Remember that TT Token has **limited validity**. Once you received 401 Unauthorized Response, you need to GET new TT Token.
###Login Properties
- username (string) : User's email
- name (string) : User's name
- password (string) : User's password
- genre (string) : Optional User's genre (FEMALE, MALE)
- birthdate (logn) : Optional User's age
## /v1/people
### POST
This resource register new user into MTSocial API and login
`Please use your MTSocial API account credentials for API calls.`
+ Request (application/json)
+ Headers
Accept: application/json
+ Body
{"email":"[email protected]", "name":"username" , "password":"YourPassword", "gender":"FEMALE", "birthdate":null}
+ Response 201 (application/json)
+ Body
{"person":{"id":"8132259c-92ff-4568-908a-ce6445a07ed1","name":"Testing test","email":"[email protected]"},"token":"3onh61e2ci6s6vk57qve4b5taarkndge"}
## /v1/people/loginSocial
### POST
This resource log in user or register a new user into MTSocial API and login
`Please use your MTSocial API account credentials for API calls.`
+ Request (application/json)
+ Headers
Accept: application/json
X-Auth-Token: {token}
+ Body
{"uid":"zdadzsdaae"}
+ Response 200 (application/json)
+ Body
{"person":{"id":"8132259c-92ff-4568-908a-ce6445a07ed1","name":"Testing test","email":"[email protected]"},"token":"3onh61e2ci6s6vk57qve4b5taarkndge"}
# Group Sprint 2
## List of tournaments or leagues [/v1/tournaments]
### List of tournaments or leagues [GET]
+ Headers
X-Auth-Token: {token}
+ Response 200 (application/json)
[
{
"idLeague":23434,
"name":"Primera Division"
},
{
"idLeague":234542,
"name": "Liga Española"
}
]
## List of teams of tournaments or league [/v1/tournaments/${idLeague}/teams/]
### Lsit of teams [GET]
+ Headers
X-Auth-Token: {token}
+ Response 201 (application/json)
{
"idLeague":23434,
"name":"Primera Division",
"teams":
[
{
"idTeam": 56456,
"name": "América",
"shortName":"CA",
"following":1,
"urlImagen":"http://gex.mediotiempo.media/23123.jpg"
},
{
"idTeam": 2234234,
"name": "Cruz Azul",
"shortName": "CAz"
"following":0,
"urlImage":"http://gex.mediotiempo.media/23123.jpg"
}
]
}
## follow a team [/v1/teams/follow{idUser,idTeam, idLeague}]
Request Team Follow
+ Parameters
+ idUser (required, number, `666`) ... Numeric `idUser` to perform action with. Has example value.
+ idTeam (required, number, `56456`) ... Numeric `idTeam` of the team that we want to follow
+ idLeague (required, number, `23434`) ... Numeric `idLeague` of league or tournament to which the football team belongs
### Seguir un equipo [POST]
+ Response 200 (application/json)
+ Header
X-My-Header: The Value
+ Body
{ "code": 0, "message": "Successful" }
## List of followings [/v1/followings{idUser}]
List of followings
+ Parameters
+ idUser (required, number, `666`) ... Numeric `idUser` to perform action with. Has example value.
### Listado de amigos a los que sigo [GET]
+ Response 201 (application/json)
[
{
"idUser":43234,
"name":"Pedro Perez",
"urlImagen":"http://gex.mediotiempo.media/32323.jpg"
},
{
"idUser":32234,
"name":"Daniel Ramos",
"urlImagen":"http://gex.mediotiempo.media/32323.jpg"
},
{
"idUser":43234,
"name":"Moises Vélez",
"urlImagen":"http://gex.mediotiempo.media/32323.jpg"
},
{
"idUser":43234,
"name":"Bernardino Guerrero",
"urlImagen":"http://gex.mediotiempo.media/32323.jpg"
}
]
## Request user following [/v1/follow/person{idPersonToFollow}]
Following a user
+ Parameters
+ idPersonToFollow (required, string, `8a710509-33f6-493c-8a08-7c5998e42a65`) ... String corresponding to the `id` of the person the current user want to follow
### Request a person follow [GET]
+ Response 200 (application/json)
+ Header
X-My-Header: The Value
+ Body
{ "code": 0, "message": "Successful" }
## User's profile [/v1/user/profile{idUser}]
Get user's profile with three last activities
Meaning of the values for the tag <b>type</b> in the response:
<ol type="1" start="1">
<li> Like a post </li>
<li> Share a post </li>
<li> Comment a post with or without picture </li>
<li> Checkin </li>
<li> Following a user</li>
<li> Following a match </li>
<li> Following a team </li>
<li> Comment about match </li>
<li> Photos about event</li>
<li> Post a comment with or without picture </li>
</ol>
+ Parameters
+ idUser (required, number, `666`) ... Numeric `idUser` to perform action with. Has example value.
### GET
+ Headers
X-Auth-Token: {token}
+ Response 200 (application/json)
+ Body
{
"name":"Cristiano Ronaldo",
"followings":9
"followers":23248,
"badges": 30,
"snapShot":[
{
"urlThumb":"http://mt.scoial.media.thumb/3434.jpg",
"url":"http://mt.scoial.media.picture/3434.jpg",
"text":nil
},
{
"urlThumb":"http://mt.scoial.media.thumb/343.jpg",
"url":"http://mt.scoial.media.picture/343.jpg",
text:nil
},
{
"urlThumb":"http://mt.scoial.media.thumb/7434.jpg",
"url":"http://mt.scoial.media.picture/7434.jpg",
"text":nil
}
]
"activity":[
{
"idActivity":23423,
"type":4,
"urlImg":{
"urlThumb":"http://mt.scoial.media.picture.user.thumb/666.png",
"url":"http://mt.scoial.media.picture.user/666.png",
"text":nil
},
"text":"Hoy vamos a golear a los merengues"
},
{
"idActivity":53453,
"type":10,
"urlImg":nil,
text:"Hoy si gana mi equipo"
},
{
"idActivity":666,
"type":5,
"urlImg":{
"urlThumb":"http://mt.scoial.media.picture.user.thumb/666.png",
"url":"http://mt.scoial.media.picture.user/666.png",
"text":nil
},
"text":nil
}
]
}
## Get user's pictures [/v1/user/pictures{idUser}]
Get a list of user's pictures
+ Parameters
+ idUser (required, number, `666`) ... Numeric `idUser` to perform action with. Has example value.
### GET
+ Headers
X-Auth-Token: {token}
+ Response 200 (application/json)
+ Body
[
{
"idPicture":23423,
"urlThumb":"http://mt.scoial.media.thumb/3434.jpg",
"url":"http://mt.scoial.media.picture/3434.jpg",
"text":nil,
"comments":100
},
{
"idPicture":23424,
"urlThumb":"http://mt.scoial.media.thumb/343.jpg",
"url":"http://mt.scoial.media.picture/343.jpg",
"text":nil,
"comments":0
},
{
"idPicture":23425,
"urlThumb":"http://mt.scoial.media.thumb/7434.jpg",
"url":"http://mt.scoial.media.picture/7434.jpg",
"text":"Yo en la bombonera",
"comments":3432
}
]
## Followers [/v1/user/followers{idUser}]
Get user's followers list
### GET
+ Parameters
+ idUser (required, number, `666`) ... Numeric `idUser` to perform action with. Has example value.
+ Response 200 (application/json)
[{
"name":"Pedro Perez",
"idUser":23434,
"status":"follow",
"avatar":{
"urlThumb":"http://mt.scoial.media.thumb/3434.jpg",
"url":"http://mt.scoial.media.picture/3434.jpg",
"text":nil
}
},
{
"name":"Luis Orosco",
"idUser":44234,
"status":"follow",
"avatar":{
"urlThumb":"http://mt.scoial.media.thumb/3434.jpg",
"url":"http://mt.scoial.media.picture/3434.jpg",
"text":nil
}
},
{
"name":"Guillermo García",
"idUser":9434,
"status":"follow",
"avatar":{
"urlThumb":"http://mt.scoial.media.thumb/3434.jpg",
"url":"http://mt.scoial.media.picture/3434.jpg",
"text":nil
}
}
]
## Block a user [/v1/user/blockUser{idUser, idUserBlocked}]
Block a user
+ Parameters
+ idUser (required, number, `666`) ... Numérico `idUser` user logged
+ idUserBlocked (required, number, `966`) ... Numérico `idUserBlocked` user to block.
### POST
+ Request (application/json)
{ "idUser": 666,"token":"ADASqwe21312323ADFf" }
+ Response 201 (application/json)
+ Header
X-My-Header: The Value
+ Body
{ "code": 0, "message": "Successful" }
## Unblock a user [/v1/user/unblockUser{idUser, idUserUnblock}]
Block a user
+ Parameters
+ idUser (required, number, `666`) ... Numérico `idUser` user logged
+ idUserUnblock (required, number, `966`) ... Numérico `idUserUnblock` user to unblock.
### POST
+ Request (application/json)
{ "idUser": 666,"token":"ADASqwe21312323ADFf" }
+ Response 201 (application/json)
+ Header
X-My-Header: The Value
+ Body
{ "code": 0, "message": "Successful" }
## User's activity [/v1/user/timeline{idUser, idUserTimeLine}]
Meaning of the values for the tag <b>type</b> in the response:
<ol type="1" start="1">
<li> Like a post </li>
<li> Share a post </li>
<li> Comment a post with or without picture </li>
<li> Checkin </li>
<li> Following a user</li>
<li> Following a match </li>
<li> Following a team </li>
<li> Comment about match </li>
<li> Photos about event</li>
<li> Post a comment with or without picture </li>
</ol>
+ Parameters
+ idUser (required, number, `666`) ... Numeric `idUser` User logged in the app
+ idUserTimeLine (required, number, `966`) ... Numeric `idUserTimeLine` of what we want to see the activity on the App.
### POST
+ Request (application/json)
{ "idUser": 666,"token":"ADASqwe21312323ADFf" }
+ Response 201 (application/json)
+ Header
X-My-Header: The Value
+ Body
[{"idActivity":23453,
"type":1,
"urlImg":null,
"text":"Hoy si gana mi equipo",
"userRelated":{
"idUser":34433,
"name":"Cristiano Ronaldo",
"urlImagen":"http://gex.mediotiempo.media/32323.jpg"
},
"comments":0
},
{
"idActivity":23454,
"type":2,
"urlImg":null,
"text":"Hoy si gana mi equipo",
"userRelated":{
"idUser":34433,
"name":"Cristiano Ronaldo",
"urlImagen":"http://gex.mediotiempo.media/32323.jpg"
},
"comments":0
},
{
"idActivity":23455,
"type":3,
"urlImg":null,
"text":"Hoy si gana mi equipo",
"userRelated":{
"idUser":34433,
"name":"Cristiano Ronaldo",
"urlImagen":"http://gex.mediotiempo.media/32323.jpg"},
"comments":1
},
{
"idActivity":23456,
"type":4,
"urlImg":{
"urlThumb":"http://mt.scoial.media.picture.user.thumb/666.png",
"url":"http://mt.scoial.media.picture.user/666.png", "text":nil
},
"text":"En el estadio Azteca",
"comments":3450,
"checkinInfo":{
"idChekin":908,
"name":"Estadio Azteca"
}
},
{
"idActivity":23457,
"type":5,
"urlImg":null,
"text":null,
"comments":0,
"userRelated":{
"idUser":34433,
"name":"Cristiano Ronaldo",
"urlImagen":"http://gex.mediotiempo.media/32323.jpg"}
},
{
"idActivity":23957,
"type":6,
"urlImg":null,
"text":null,
"comments":0,
"match":{
"idMatch":9097
local:{
"idTeam":1230,
"name":"Real Madrid",
"shortName":"RealM"
"urlImagen":"http://gex.mediotiempo.media/realM.jpg"
},
visiting:{
"idTeam":1237,
"name":"Everton",
"shortName":"EVE"
"urlImagen":"http://gex.mediotiempo.media/Everton.jpg"
}
}
},
{
"idActivity":23458,
"type":7,
"urlImg":null,
"text":null,
"comments":0,
"team":{
"idTeam":13344,
"name":"Pumas de la UNAM",
"shortName":"Pumas",
"urlImagen":"http://gex.mediotiempo.media/32323.jpg"
}
},
{
"idActivity":23458,
"type":8,
"text":"Este partido deja mucho que desear",
"comments":10,
"idUser":666
"userName":"Bernardino Guerrero"
"match":{
"idMatch":9097
local:{
"idTeam":1230,
"name":"Real Madrid",
"shortName":"RealM"
"urlImagen":"http://gex.mediotiempo.media/realM.jpg"
},
visiting:{
"idTeam":1237,
"name":"Everton",
"shortName":"EVE"
"urlImagen":"http://gex.mediotiempo.media/Everton.jpg"
}
},
{
"idActivity":21479,
"type":9,
"idUser":666
"userName":"Bernardino Guerrero"
"match":{
"idMatch":9097
local:{
"idTeam":1230,
"name":"Real Madrid",
"shortName":"RealM"
"urlImagen":"http://gex.mediotiempo.media/realM.jpg"
},
visiting:{
"idTeam":1237,
"name":"Everton",
"shortName":"EVE"
"urlImagen":"http://gex.mediotiempo.media/Everton.jpg"
}
},
"photosMatch":{
"idAlbum":43123,
photos:[
{
"urlImg":"http://mtsocial.partidos/234234.png",
"text":null
},
{
"urlImg":"http://mtsocial.partidos/234235.png",
"text":"Que golazoooo...!"
}
]
},
{
"idActivity":23458,
"type":10,
"urlImg":"http://mtsocial.partidos/93234.png",
"text":"Hoy si gana mi equipo"
}]
## Get a comment's list of activity [/v1/user/timeline{idUser, idEvent}]
+ Parameters
+ idUser (required, number, `666`) ... Numeric `idUser` user logged.
+ idEvent (required, number, `23458`) ... Numeric `idEvent` of what we want get comments
### GET
+ Headers
X-Auth-Token: {token}
+ Response 200 (application/json)
+ Body
[{
"idComment":1231,
"text":"Este partido deja muho que desear",
"timeStamp":2342340999,
"user":{
"name":"Bernardino Guerrero",
"idUser":9434,
"status":"follow",
"avatar":{
"urlThumb":"http://mt.scoial.media.thumb/3434.jpg",
"url":"http://mt.scoial.media.picture/3434.jpg",
}
}
},
{
"idComment":1231,
"text":"Tú no sabes de futbol",
"timeStamp":2342340909,
"usuario":{
"name":"Tony Vielmas",
"idUser":1334,
"status":"follow",
"avatar":{
"urlThumb":"http://mt.scoial.media.thumb/1334.jpg",
"url":"http://mt.scoial.media.picture/1334.jpg",
}
}
}
]
# Group Sprint 3
Partidos (en vivo, anteriores, proximos) , Torneos y Mis Partidos
## Partidos [/matches]
### Listado de partidos [GET]
Este servicio trae como respuesta los partidos de las diferentes ligas. Se pide un criterio de tiempo (pasado, presente, futuro) para listarlos. Valor esperado: `option` ( `past` <b>partidos anteriores</b> , `next` <b>partidos proximos</b> y`today` <b>partidos en vivo</b> ).
+ Request (application/json)
+ Headers
X-Auth-Token: {token}
+ Body
{"option": "optionMatch"}
+ Response 200 (application/json)
{
timestamp: "2014-03-12T15:43:59Z",
torneos: {
429: {
nombre: "English Barclays Premier League 2013",
fases: {
1: {
nombre: "Regular",
jornadas: {
29: {
nombre: "Jornada 29",
nombreCorto: "J29",
partidos: {
50143: {
linkPrevio: null,
linkCronica: null,
linkGaleria: null,
linkFicha: null,
local: "Newcastle",
localCorto: "NEW",
localCss: "Newcastle",
federacionLocal: "FA",
visitante: "Everton",
visitanteCorto: "EVE",
visitanteCss: "Everton",
federacionVisitante: "FA",
goles_local: null,
goles_visitante: null,
penales_local: null,
penales_visitante: null,
startTime: "2014-03-09T16:00:00Z",
startTimeT1: null,
endTimeT1: null,
startTimeT2: null,
endTimeT2: null,
startTimeTE1: null,
endTimeTE1: null,
startTimeTE2: null,
endTimeTE2: null,
endTimeGame: null,
compTimeT1: 0,
compTimeT2: 0,
compTimeTE1: 0,
compTimeTE2: 0,
hasExtraTime: false,
hasPenalties: false,
esFavorito: true,
comentariosCantidad: 45
}
}
}
}
}
}
},
432: {},
447: {}
}
+ Response 404 (application/json)
{
timestamp: "2014-03-12T16:03:40Z",
portada: "noticias",
torneos: {
info: "no se encontraron partidos"
}
}
## Partidos [/mymatches]
### Listado de partidos [GET]
Este servicio devuelve los partidos "seguidos"
+ Request (application/json)
+ Headers
X-Auth-Token: {token}
+ Body
{"option": "optionMatch"}
+ Response 200 (application/json)
{
}
## Ficha de partido [/reviews]
Fuente: http://euro.mediotiempo.com/html/feeds/sindicacion/partidos/ficha/5/513/51343.xml
### Ficha de partido [GET]
Servicio que debe traer la info del partido, goles, anotadores, si ah sido seguido, encuesta y si ah votado en la encuesta. Traerá datos siempre y cuando el partido haya finalizado. Valor a enviar: `idMatch`
+ Request (application/json)
+ Headers
X-Auth-Token: {token}
+ Body
{"idMatch":"50143"}
+ Response 200 (application/json)
{
torneo: {
id: 447,
name: Clausura 2014,
start: "2014-01-03"
},
partido:{
id: 51343,
jornada: 7,
fase: 1,
bitacora: true,
galeria: true
},
fecha: "2010-08-28 18:00:00",
estadio: Morelos,
estadioLat: 19.696961,
estadioLon: -101.202165,
localId: 31,
localNombre: Morelos,
visitanteId: 20,
visitanteNombre: América,
totalGolesLocal : 2,
totalGolesVisitante : 3,
fotos: {
[
"http://gex.mediotiempo.media/23128.jpg",
"http://gex.mediotiempo.media/23126.jpg",
"http://gex.mediotiempo.media/23125.jpg",
]
},
haVotado: false,
votacion: {
local: 63,
empate: 17,
visitante: 20
},
goles: {
[
gol: {
id: 1,
idequipoanotado: 31,
idequiporecibido: 20,
min: 61
tipo: 1,
forma: 1,
marcador: “1-0”,
jugadorId: 9910,
jugador: “Christian Valdez”
},
gol: {
id: 1,
idequipoanotado: 31,
idequiporecibido: 20,
min: 86
tipo: 1,
forma: 1,
marcador: “1-0”,
jugadorId: 9910,
jugador: “Christian Valdez”
}
]
}
}
+ Response 404 (application/json)
error: {
timestamp: "2014-03-12T16:03:40Z",
info: "no se encontro ficha"
}
## Votaciones de partido [/polls]
Las votaciones son pequeñas encuestas realizadas por partido. Los elementos (`opcionEncuesta`) por votar son `local`, `empate` y `visitante`.
### Listado de Votaciones[GET]
Este servicio trae para un partido dado, las votaciones realizadas por los usuarios. Valor a enviar: `idMatch`.
+ Request (application/json)
+ Headers
X-Auth-Token: {token}
+ Body
{"idMatch":"50143" }
+ Response 200 (application/json)
votacion: {
total: 100 ,
local: 60 ,
empate: 17 ,
visitante: 23
}
+ Response 404 (application/json)
{
code : 404 ,
message: "no se encontro encuesta"
}
### Agregar votacion de partido [PUT]
Este servicio agrega un voto a la encuesta. Admite uno de tres valores para realizar la votacion: `local`, `empate` o `visitante`.
+ Request (application/json)
+ Headers
X-Auth-Token: {token}
+ Body
{"idMatch":"50143" , "option": "opcionEncuesta" }
+ Response 200 (application/json)
{
total: 104 ,
local: 64 ,
empate: 17 ,
visitante: 23
}
## Comentarios de Partido [/match_comments]
### Listado de comentarios de partido [GET]
El servicio regresa los comentarios asociados con un partido. Valores esperado: `idMatch` , `start` (id del ultimo comentario) , `count` (cantidad de cometarios a traer). En caso de no venir `start` o `count` se asume el default: `start` = ultimo comentario de partido en BD y `count` = 20.
+ Request (application/json)
+ Headers
X-Auth-Token: {token}
+ Body
{"idMatch":"50143" , "start":"678" , "count":"20" }
+ Response 200 (application/json)
[
{
idComentario: 678 ,