-
Notifications
You must be signed in to change notification settings - Fork 0
/
Lovecust-API.postman_collection.json
4435 lines (4435 loc) · 161 KB
/
Lovecust-API.postman_collection.json
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
{
"id": "2ec467b1-77b9-3e88-8c2e-57a90d857572",
"name": "Lovecust-API",
"description": "# Lovecust APIs v1.2\n\n> Created by Fisher on 2016-09-22 at 21:10.\n\nFor lovecust api documents and test scripts.\n\n---\n\n## Api Path Summary\n\n---\n\n### App\n\n- /apis/app/general/android-version\n- /apis/app/general/internet-status\n- /apis/app/users/:uid/profile-status\n\n### Ecust\n\n- /apis/ecust/jwc/newses\n- /apis/ecust/jwc/newses/:newsId\n- /apis/ecust/jwc/newses/:newsId/comments\n- /apis/ecust/library/status\n\n---\n\n\n\n\n",
"order": [],
"folders": [
{
"id": "a8d78956-57b5-d3ff-2850-cf6ed2f3906e",
"name": "ecust-actiivty",
"description": "",
"order": [
"a87e2bf7-f98b-b495-5713-7ec9a4f9ee55",
"b33ddfd0-69ba-53d8-5f87-8168734c7162",
"c884be29-129e-7141-265c-9e262068cb7f",
"2ddea6c3-06f8-6625-5fd2-0f6c7c73933f",
"fa993aa8-5c44-95d7-97bb-ff9323d9aec3"
],
"owner": "822070",
"collectionId": "2ec467b1-77b9-3e88-8c2e-57a90d857572"
},
{
"id": "432d52e9-a5ed-123b-33f6-476bb91c424d",
"name": "ecust-actiivty-member",
"description": "",
"order": [
"fc47da64-7a0b-e29f-da63-8b33b632dd92",
"b91257cf-71ac-9032-33c3-58e9b477fa86",
"385f2ee0-4025-e02c-3398-c9cd9e75e279",
"90676e46-436c-9cf2-5b41-1b777069a966",
"9f7034ba-8ca9-a613-64b8-c0ccdb7e14ae"
],
"owner": "822070",
"collectionId": "1df042c8-8b8b-59a8-86d6-67d73b7016c4"
},
{
"id": "0daefc20-552f-05a5-dd13-3eaa5fab8f55",
"name": "ecust-activity-images",
"description": "",
"order": [
"7f1b24e6-f015-2718-cfa8-8c50ba8204c4",
"25b3aba2-c2d3-6016-7493-1015af1202e0",
"013e9e57-00f3-b3ef-4abe-53e76b07622c",
"01886d7a-9dcb-ab54-0727-682e53aefe27",
"1be608e7-fd8e-ae3a-04c3-2869f67502c8"
],
"owner": "822070",
"collectionId": "2ec467b1-77b9-3e88-8c2e-57a90d857572"
},
{
"owner": "822070",
"lastUpdatedBy": "822070",
"lastRevision": 583486637,
"id": "d38a1515-4732-0bdf-6717-4c4b4839df2c",
"name": "ecust-jwc",
"description": "# Ecust jwc module.\n\n> Created by Fisher on 2016-09-22 at 21:24.\n\n---\n\n\n## Decleration of objects.\n\n---\n\ndefine <jwc-news-object>\n\n- path: {String}\n - News path in jwc-web-site.\n- name: {String}\n - News name.\n- date: {String}\n - News published date.\n- tag: {Number}\n - News tag.\n- md5: {String}\n - md5(name+path+date).\n- attachments: [{{jwc-news-attachment-object}}]\n\n---\n\ndefine <jwc-news-attachment-object>\n\n- path: {String}\n - Attachment path in jwc-web-site.\n- name: {String}\n - Attachment name.\n- format: {String}\n - Attachment format.\n- size: {Number} *Only when attachment is a file.*\n - Attachment size.\n- md5: {String} *Only when attachment is a file.*\n - md5(attachment-content).\n\n---\n\n",
"order": [
"d2660213-8553-954b-3b86-9378822ab832",
"0125033d-5aa9-a1d4-c17b-8ee4b4d70926",
"50cadfa7-ee5b-0b3d-6584-43fb1cbf746d",
"5c1ed61f-8049-e174-b472-ef7bc20f0466"
],
"collectionId": "2ec467b1-77b9-3e88-8c2e-57a90d857572"
},
{
"owner": "822070",
"lastUpdatedBy": "822070",
"lastRevision": 584750432,
"id": "e85c8e76-bb1d-96c8-3dd6-90a18e881c03",
"name": "ecust-library",
"description": "",
"order": [
"85e303c0-ae32-2abb-7af3-2cc0853a5ef5",
"226c49dd-2594-5c98-17c7-4b06250a72da",
"c9bc0b47-d187-f2dd-eab9-b6ac59825bc5"
]
},
{
"owner": "822070",
"lastUpdatedBy": "822070",
"lastRevision": 584767229,
"id": "06133f0e-9d26-9c41-2375-06e878164421",
"name": "lovecust-general",
"description": "# Lovecust App General APIs.\n\n> Created by Fisher on 2016-09-23 at 09:36.\n\n---\n\n",
"order": [
"def2f9ab-8aaa-9725-f5b1-e3df129aca79"
],
"collectionId": "2ec467b1-77b9-3e88-8c2e-57a90d857572"
},
{
"id": "26a3b157-ba82-e48e-679a-6d653e74bcbc",
"name": "lovecust-users-feedback",
"description": "",
"order": [
"1cbc9dd6-3e49-de00-675e-f071cf2a5b52",
"8249a80c-d25f-91c1-581e-8e11d0ab05a4"
],
"owner": "822070"
},
{
"owner": "822070",
"lastUpdatedBy": "822070",
"lastRevision": 584990091,
"id": "fcad1a82-c368-eb7a-31a4-4226eba44e4d",
"name": "lovecust-users-profile",
"description": "# Lovecust APIs related to Users.\n\n> Created by Fisher on 2016-09-23 at 09:36.\n\n---\n\nUnauthorized user\n\n\n",
"order": [
"2b7a0542-aeac-789d-80c8-5e5cb35df0a0",
"0f8a7956-b635-2f41-8f7c-1c23aa4e01c0"
],
"collectionId": "2ec467b1-77b9-3e88-8c2e-57a90d857572"
},
{
"owner": "822070",
"lastUpdatedBy": "822070",
"lastRevision": 583492699,
"id": "a18780dd-a24b-d06e-7bff-366832e92bfc",
"name": "spa.turing",
"description": "",
"order": [
"e072416b-a22a-bda8-3577-ee4c6c9e5a20"
]
}
],
"timestamp": 0,
"owner": "822070",
"public": false,
"requests": [
{
"id": "0125033d-5aa9-a1d4-c17b-8ee4b4d70926",
"headers": "{{header-user-key}}: {{header-user-value}}\n",
"url": "{{address-apis}}/ecust/jwc/newses/{{news-id}}",
"preRequestScript": null,
"pathVariables": {},
"method": "GET",
"data": null,
"dataMode": "params",
"tests": "var res = JSON.parse(responseBody);\n\n\ntests[\"Jwc-News-Detail\"] = res.path && res.name && res.date && res.value\n && res.tag >= 1 && res.tag <= 4;\n\npostman.setEnvironmentVariable(\"news-id\", res.md5);",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1482051927257,
"name": "jwc-news-detail",
"description": "# Ecust Jwc News Detail\n\n> Created by Fisher on 2016-09-22 at 22:28.\n\nMethod: **GET**.\n\n---\n\n\n## Response\n\n- {{jwc-news-object}}\n\n---\n\n",
"collectionId": "2ec467b1-77b9-3e88-8c2e-57a90d857572",
"responses": [
{
"owner": "822070",
"lastUpdatedBy": "822070",
"lastRevision": 583329087,
"request": "0125033d-5aa9-a1d4-c17b-8ee4b4d70926",
"id": "a9b54b46-69c2-ecee-d710-b3a7c29948c6",
"name": "Jwc-Newses",
"status": "",
"responseCode": {
"code": 200,
"name": "OK"
},
"time": "16",
"headers": [
{
"name": "Access-Control-Allow-Origin",
"key": "Access-Control-Allow-Origin",
"value": "*",
"description": ""
},
{
"name": "Connection",
"key": "Connection",
"value": "keep-alive",
"description": ""
},
{
"name": "Content-Encoding",
"key": "Content-Encoding",
"value": "gzip",
"description": ""
},
{
"name": "Content-Type",
"key": "Content-Type",
"value": "application/json; charset=utf-8",
"description": ""
},
{
"name": "Date",
"key": "Date",
"value": "Thu, 22 Sep 2016 14:12:11 GMT",
"description": ""
},
{
"name": "ETag",
"key": "ETag",
"value": "W/\"38b5-SzxufnJb6yg18CDofRf8RQ\"",
"description": ""
},
{
"name": "Transfer-Encoding",
"key": "Transfer-Encoding",
"value": "chunked",
"description": ""
},
{
"name": "Vary",
"key": "Vary",
"value": "Accept-Encoding",
"description": ""
},
{
"name": "X-Content-Type-Options",
"key": "X-Content-Type-Options",
"value": "nosniff",
"description": ""
},
{
"name": "X-Powered-By",
"key": "X-Powered-By",
"value": "Express",
"description": ""
},
{
"name": "errcode",
"key": "errcode",
"value": "0",
"description": ""
}
],
"cookies": [],
"mime": "",
"text": "[{\"path\":\"/s/75/t/134/0f/4e/info69454.htm\",\"name\":\"关于2016���上海市高等学校计算机等级考试上机模拟考试的通知\",\"date\":\"2016-09-22\",\"tag\":2,\"md5\":\"b92277f2eba27e2c2dacaa7345328807\",\"attachments\":[]},{\"path\":\"/s/75/t/134/07/fa/info67578.htm\",\"name\":\"2016年全国大���生英语竞赛获奖名单\",\"date\":\"2016-05-19\",\"tag\":4,\"md5\":\"a2187147e13f9f7a51f9135f0ea22477\",\"attachments\":[{\"path\":\"/picture/article/75/03/a5/19f56b024e959cb2a644490ddad6/065ab3a2-5dec-44ca-99a3-a5267c262bc4.pdf\",\"name\":\"2016全国大学生英语竞赛获奖名单\",\"format\":\"pdf\",\"size\":111311,\"md5\":\"ebf6d2c42a36e591f872d3da97ba75b6\"}]},{\"path\":\"/s/75/t/134/0f/4e/info69454.htm\",\"name\":\"关于2016年上海市高等学校计算机等级考试上机模拟考试的通知\",\"date\":\"2016-09-22\",\"tag\":2,\"md5\":\"5d528d25abbff2fe2ec1fbe39ed6a2fb\",\"attachments\":[]},{\"path\":\"/s/75/t/134/0e/12/info69138.htm\",\"name\":\"20161学期重读报名通知(新)\",\"date\":\"2016-09-22\",\"tag\":1,\"bold\":true,\"md5\":\"fc9458df8d02f59b0de16c576d3e63c4\",\"attachments\":[{\"path\":\"/picture/article/75/6f/f6/0315a85a49b7bac2fef1cb45744d/dccb04c3-0786-451b-8ade-1fde7b3c297d.doc\",\"name\":\"重读报名流程及说明-学生参考\",\"format\":\"doc\",\"size\":34304,\"md5\":\"85c33f665be9a0a4bfba4b01fd6776dc\"},{\"path\":\"/picture/article/75/6f/f6/0315a85a49b7bac2fef1cb45744d/601f4fd1-9abc-48ce-81d9-6beb6a64efa9.doc\",\"name\":\"学生替换课程认定申请表\",\"format\":\"doc\",\"size\":32768,\"md5\":\"27dd96f40985ec2beabe02f800d3fcdb\"},{\"path\":\"/picture/article/75/6f/f6/0315a85a49b7bac2fef1cb45744d/bcab4393-4607-4b1d-95f6-d6e1f38eea5b.xls\",\"name\":\"201601学期 开班重读课程 开课情况表\",\"format\":\"xls\",\"size\":41472,\"md5\":\"e0e14236d0355c9b2b97eb6dbe8e10f9\"}]},{\"path\":\"/s/75/t/134/0e/81/info69249.htm\",\"name\":\"2016年下���年全国大学英语四六级等级考试报名通知\",\"date\":\"2016-09-18\",\"tag\":2,\"md5\":\"3daaa484bf8e4b06467beb05d471b94a\",\"attachments\":[{\"path\":\"/picture/article/75/e5/af/f7c42b3342309c26d6a58e3b0c97/c413dde3-ef21-4a02-bc7c-3d922ca66c20.doc\",\"name\":\"四六级在线报名操作流程说明(学生)\",\"format\":\"doc\",\"size\":1365504,\"md5\":\"a992e40a28001c5ce80a4afc6aeb37ac\"},{\"path\":\"http://urp.ecust.edu.cn/\",\"name\":\"http://urp.ecust.edu.cn\",\"format\":\"\"},{\"path\":\"http://ksbm.ecust.edu.cn/\",\"name\":\"http://ksbm.ecust.edu.cn\",\"format\":\"\"}]},{\"path\":\"/s/75/t/134/0f/45/info69445.htm\",\"name\":\"《有机化学》答疑安排\",\"date\":\"2016-09-22\",\"tag\":4,\"md5\":\"1f761fd4353afd21eafce9d67b27a7c9\",\"attachments\":[]},{\"path\":\"/s/75/t/134/0f/2f/info69423.htm\",\"name\":\"本科国庆节放假通知\",\"date\":\"2016-09-22\",\"tag\":1,\"md5\":\"c3084f2e6eea56cca52bb550f2ed0182\",\"attachments\":[]},{\"path\":\"/s/75/t/134/0d/7d/info68989.htm\",\"name\":\"体育学院关于补考、缓考、重修、保健班及学生成绩疑���处理的通知\",\"date\":\"2016-09-20\",\"tag\":4,\"md5\":\"8c602c4030af0ea3754bb2b87ef3dd7c\",\"attachments\":[]},{\"path\":\"/s/75/t/134/02/54/info66132.htm\",\"name\":\"关于进一步严肃考风考纪的通知\",\"date\":\"2016-04-08\",\"tag\":2,\"md5\":\"d1bbb9a72dd78d2576a9d2e12344e8bb\",\"attachments\":[]},{\"path\":\"/s/75/t/134/02/53/info66131.htm\",\"name\":\"关于规范考试考核中手机等电子设备管理的补充规定\",\"date\":\"2016-04-08\",\"tag\":2,\"md5\":\"7c7f38f0af85867e1321f07e9965a866\",\"attachments\":[]},{\"path\":\"/s/75/t/134/07/fa/info67578.htm\",\"name\":\"2016年全国大学生英语竞赛获奖名单\",\"date\":\"2016-05-19\",\"tag\":4,\"md5\":\"15029b568c83c7462f357899e611cd95\",\"attachments\":[{\"path\":\"/picture/article/75/03/a5/19f56b024e959cb2a644490ddad6/065ab3a2-5dec-44ca-99a3-a5267c262bc4.pdf\",\"name\":\"2016全国大学生英语竞赛获奖名单\",\"format\":\"pdf\",\"size\":111311,\"md5\":\"ebf6d2c42a36e591f872d3da97ba75b6\"}]},{\"path\":\"/s/75/t/134/0c/87/info68743.htm\",\"name\":\"第十七届化工创新实践大赛获奖名单\",\"date\":\"2016-07-12\",\"tag\":3,\"md5\":\"02735b076a2d49dd35ae91c0c038db4c\",\"attachments\":[]},{\"path\":\"/s/75/t/134/0d/a1/info69025.htm\",\"name\":\"2016-2017学年第一学期《实验化学3》教学安排发布\",\"date\":\"2016-09-06\",\"tag\":1,\"bold\":true,\"md5\":\"fa092c508fd2e494088e179a4f2c170a\",\"attachments\":[{\"path\":\"/picture/article/75/41/50/72b79b6a4e1088da8acc97fe0c04/dddb2447-51cd-4e89-a212-605a68ca1596.rar\",\"name\":\"2016-2017学年第一学期实验化学3教学安排\",\"format\":\"rar\",\"size\":910690,\"md5\":\"318a6468ac74877a29bb5c954f611370\"}]},{\"path\":\"/s/75/t/134/0d/8b/info69003.htm\",\"name\":\"华东理工大学2016“华理东方仿真杯”初赛参赛者名单\",\"date\":\"2016-09-06\",\"tag\":3,\"md5\":\"4bf4e9d73849d2512e121ed8ace1c01d\",\"attachments\":[{\"path\":\"tel:10140213\",\"name\":\"10140213\",\"format\":\"\"},{\"path\":\"tel:10140212\",\"name\":\"10140212\",\"format\":\"\"},{\"path\":\"tel:10140188\",\"name\":\"10140188\",\"format\":\"\"}]},{\"path\":\"/s/75/t/134/0d/b4/info69044.htm\",\"name\":\"申请2016年6月CET考试成绩核查的办法\",\"date\":\"2016-09-07\",\"tag\":2,\"md5\":\"47f8d8c5337d6904358a7b770542ce60\",\"attachments\":[]},{\"path\":\"/s/75/t/134/0d/be/info69054.htm\",\"name\":\"2016--2017(1)辅修专业收费和开课通知\",\"date\":\"2016-09-08\",\"tag\":2,\"md5\":\"6508425cb45e7f9b6fc98580576d8090\",\"attachments\":[{\"path\":\"/picture/article/75/a5/7e/d11e5a1b4b7f8eae2a4dad07fcba/8945e5c4-5725-4346-8e21-2ecd7510c351.docx\",\"name\":\"2016-2017(1) 计算机技术及应用收费和课程安排\",\"format\":\"docx\",\"size\":18256,\"md5\":\"d91608c60b2cf818286462e8715de612\"},{\"path\":\"/picture/article/75/a5/7e/d11e5a1b4b7f8eae2a4dad07fcba/76c78ae0-f0c8-4d88-911b-14ee751e7f81.xls\",\"name\":\"2016-2017(1) 理学院辅修收费标准和课程安排\",\"format\":\"xls\",\"size\":56832,\"md5\":\"5e1f2193168ad8fb3d29a5a20c72f0cc\"},{\"path\":\"/picture/article/75/a5/7e/d11e5a1b4b7f8eae2a4dad07fcba/09981710-20ea-4585-a252-09f0fd34ac4e.doc\",\"name\":\"2016-2017(1) 外语辅修专业开学等相关通知\",\"format\":\"doc\",\"size\":123392,\"md5\":\"c93140bee70d99f1411adc591f4e81ee\"},{\"path\":\"/picture/article/75/a5/7e/d11e5a1b4b7f8eae2a4dad07fcba/7f59a830-a48d-46f2-8d6a-3384b7449e2c.doc\",\"name\":\"2016-2017(1)法学辅修14级、15级开学通知\",\"format\":\"doc\",\"size\":42496,\"md5\":\"c0613d0d677ced8d0fa17d9d3cb2fe32\"},{\"path\":\"/picture/article/75/a5/7e/d11e5a1b4b7f8eae2a4dad07fcba/8a4218b0-2a96-4bd0-9f86-f66ff5ef7e1e.doc\",\"name\":\"2016-2017(1)商学院辅修补考、注册.缴费通知\",\"format\":\"doc\",\"size\":67584,\"md5\":\"d18eaed2cea36d858226bb7350e20808\"},{\"path\":\"/picture/article/75/a5/7e/d11e5a1b4b7f8eae2a4dad07fcba/020b10b4-f9f6-4a97-843d-693bd126fa1f.doc\",\"name\":\"2016-2017(1)艺术设计辅修专业报到注册通知\",\"format\":\"doc\",\"size\":55296,\"md5\":\"f3fbd8c0f28531543e9453bb95dc3a99\"}]},{\"path\":\"/s/75/t/134/0d/de/info69086.htm\",\"name\":\"第十八期电子产品设计技能训练报名通知\",\"date\":\"2016-09-09\",\"tag\":3,\"md5\":\"97a75c653780c8d9346b845c216653af\",\"attachments\":[]},{\"path\":\"/s/75/t/134/0d/da/info69082.htm\",\"name\":\"20161学期奉贤退改选通知\",\"date\":\"2016-09-09\",\"tag\":1,\"bold\":true,\"md5\":\"079531f4015e6038b6d3f0e701ca95bd\",\"attachments\":[{\"path\":\"/picture/article/75/5d/aa/747410c447a5bf5f87ff41e9f471/d8c42016-f532-4813-96c6-5fe9d3d5cd1d.doc\",\"name\":\"学生调课申请表\",\"format\":\"doc\",\"size\":34816,\"md5\":\"a95978b8d3937802662f389ede0f29ac\"},{\"path\":\"/picture/article/75/5d/aa/747410c447a5bf5f87ff41e9f471/233f5d04-a208-4936-86e2-0201e631f520.doc\",\"name\":\"华东理工大学课程免听申请表\",\"format\":\"doc\",\"size\":29696,\"md5\":\"09990c2a8446a3b6569f93e12f6a08e4\"}]},{\"path\":\"/s/75/t/134/0d/db/info69083.htm\",\"name\":\"20161学期徐汇退改选通知\",\"date\":\"2016-09-09\",\"tag\":1,\"bold\":true,\"md5\":\"cb3f62ca29f16d41ce687b6725ab0d2a\",\"attachments\":[{\"path\":\"/picture/article/75/dc/07/a8dab50c4d38a9b60ea74dd49ec5/cc7fe3f6-9520-4c7a-a6f9-60e37c3adf91.doc\",\"name\":\"学生调课申请表\",\"format\":\"doc\",\"size\":292,\"md5\":\"92f636b55b913325449309eb90ae9455\"},{\"path\":\"/picture/article/75/dc/07/a8dab50c4d38a9b60ea74dd49ec5/24b3d111-f3cc-4a83-bbc6-6b0e342c955e.doc\",\"name\":\"华东理工大学课程免听申请表\",\"format\":\"doc\",\"size\":29696,\"md5\":\"09990c2a8446a3b6569f93e12f6a08e4\"}]},{\"path\":\"/s/75/t/134/0d/b3/info69043.htm\",\"name\":\"20161短学期选课通知\",\"date\":\"2016-09-09\",\"tag\":3,\"red\":true,\"md5\":\"32f883350db0af1bba4722240f9a069b\",\"attachments\":[{\"path\":\"http://202.120.108.14/xk2.asp\",\"name\":\"http://202.120.108.14/xk2.asp\",\"format\":\"\"},{\"path\":\"/picture/article/75/d5/2e/f9a57e4c41d3b9565010d458f70a/c0032d5e-218c-4ce3-8ae1-7befe7f5ed0e.xls\",\"name\":\"20161短学期竞赛、实践课程汇总\",\"format\":\"xls\",\"size\":58368,\"md5\":\"fba20efa3f1c209177f0a15d29609e6e\"}]},{\"path\":\"/s/75/t/134/0d/b6/info69046.htm\",\"name\":\"2016年数学拓展班报名通知\",\"date\":\"2016-09-12\",\"tag\":4,\"md5\":\"24a695a1ad89589f5aa4867b52964c3b\",\"attachments\":[]},{\"path\":\"/s/75/t/134/0e/27/info69159.htm\",\"name\":\"20161短学期实践、竞赛正式课程(含关闭课程)\",\"date\":\"2016-09-13\",\"tag\":3,\"red\":true,\"md5\":\"2067ebbcb979b1f006126aabdb548770\",\"attachments\":[{\"path\":\"/picture/article/75/f7/ef/06a800914fc88c1a4ff0a124f5b7/c215013e-660a-4d1b-a94a-448c1e32f522.xls\",\"name\":\"20161短学期竞赛、实践正式课程(含关闭课程)\",\"format\":\"xls\",\"size\":69120,\"md5\":\"69c0d6d58949b8f6cede18f212155544\"}]},{\"path\":\"/s/75/t/134/0e/3e/info69182.htm\",\"name\":\"华东理工大学2017届推荐免试硕士研究生面试教室安排\",\"date\":\"2016-09-14\",\"tag\":2,\"md5\":\"6c764a943b1eea9d01f1555259efbf6c\",\"attachments\":[]},{\"path\":\"/s/75/t/134/0e/98/info69272.htm\",\"name\":\"华东理工大学2017年推免生名单公示\",\"date\":\"2016-09-18\",\"tag\":2,\"md5\":\"bd95386c757f178ad04197c197bd2170\",\"attachments\":[{\"path\":\"mailto:jiaowuchu@ecust.edu.cn\",\"name\":\"jiaowuchu@ecust.edu.cn、电话64252400,18917103803)。公示起止时间: 9月18日~9月24日。\",\"format\":\"\"}]},{\"path\":\"/s/75/t/134/0e/81/info69249.htm\",\"name\":\"2016年下半年全国大学英语四六级等级考试报名通知\",\"date\":\"2016-09-18\",\"tag\":2,\"md5\":\"1094e7e85f6be315cf8b0408f881c8ce\",\"attachments\":[{\"path\":\"/picture/article/75/e5/af/f7c42b3342309c26d6a58e3b0c97/c413dde3-ef21-4a02-bc7c-3d922ca66c20.doc\",\"name\":\"四六级在线报名操作流程说明(学生)\",\"format\":\"doc\",\"size\":1365504,\"md5\":\"a992e40a28001c5ce80a4afc6aeb37ac\"},{\"path\":\"http://urp.ecust.edu.cn/\",\"name\":\"http://urp.ecust.edu.cn\",\"format\":\"\"},{\"path\":\"http://ksbm.ecust.edu.cn/\",\"name\":\"http://ksbm.ecust.edu.cn\",\"format\":\"\"}]},{\"path\":\"/s/75/t/134/0e/77/info69239.htm\",\"name\":\"20161学期新生选课名单及退改选学生名单发布通知\",\"date\":\"2016-09-18\",\"tag\":1,\"bold\":true,\"md5\":\"7694393c8d3c3be3fbb11ddea54476f3\",\"attachments\":[]},{\"path\":\"/s/75/t/134/0e/7a/info69242.htm\",\"name\":\"第一届华东理工大学张江树教学名师奖评选通知\",\"date\":\"2016-09-18\",\"tag\":3,\"bold\":true,\"md5\":\"193cf2937e4ed32ccd47e94d41cb7c70\",\"attachments\":[{\"path\":\"/picture/article/75/3f/83/cdcc553845888594399147466e93/1380a617-4707-4951-a179-3d5a8ec76c43.doc\",\"name\":\"第一届华东理工大学张江树教学名师奖申报表\",\"format\":\"doc\",\"size\":95744,\"md5\":\"4eb544cfbd75038eed347df300b4cf38\"},{\"path\":\"/picture/article/75/3f/83/cdcc553845888594399147466e93/12ec6a5b-4cf2-40bc-a179-5de5cbfe0b4d.xls\",\"name\":\"第一届华东理工大学张江树教学名师奖申报汇总表\",\"format\":\"xls\",\"size\":19968,\"md5\":\"f0cf637b4a45bd715a8559144d653c8e\"},{\"path\":\"/picture/article/75/3f/83/cdcc553845888594399147466e93/f0386b5e-e0c7-4cc4-996f-76a386ed58df.doc\",\"name\":\"校教〔2016〕67号 华东理工大学关于设立“张江树教学名师奖”的决定\",\"format\":\"doc\",\"size\":34816,\"md5\":\"d0de914d74092c0d3d831bd54dc9bfbc\"}]},{\"path\":\"/s/75/t/134/0e/99/info69273.htm\",\"name\":\"华东理工大学第19届研究生支教团录取名单公示\",\"date\":\"2016-09-18\",\"tag\":2,\"md5\":\"ebc35c585c6b804928f5b6c5df71ab0f\",\"attachments\":[]},{\"path\":\"/s/75/t/134/0e/88/info69256.htm\",\"name\":\"20161学期返校学习报名\",\"date\":\"2016-09-18\",\"tag\":1,\"bold\":true,\"md5\":\"07196ee8fea45ed62d42bec3ef8d7d6a\",\"attachments\":[]},{\"path\":\"/s/75/t/134/0e/a7/info69287.htm\",\"name\":\"华东理工大学第八届(秋)文献检索知识竞赛日程安排\",\"date\":\"2016-09-19\",\"tag\":3,\"md5\":\"555503908c4d8abad1bb8518e8dc70ac\",\"attachments\":[{\"path\":\"http://202.120.96.104/jssm.htm\",\"name\":\"http://202.120.96.104/jssm.htm\",\"format\":\"\"},{\"path\":\"http://202.120.96.104:7777/file/ji/jssm.htm\",\"name\":\"http://202.120.96.104/jsxt.\",\"format\":\"\"}]},{\"path\":\"/s/75/t/134/0d/80/info68992.htm\",\"name\":\"各学院教务办公室地点及电话\",\"date\":\"2016-09-19\",\"tag\":4,\"md5\":\"452616de9450cd4a0371b1bf5c999112\",\"attachments\":[]},{\"path\":\"/s/75/t/134/0e/12/info69138.htm\",\"name\":\"20161学期重读报名通知(新)\",\"date\":\"2016-09-19\",\"tag\":1,\"bold\":true,\"md5\":\"5f9d291dc500402d6963c336d1a8d5a5\",\"attachments\":[{\"path\":\"/picture/article/75/6f/f6/0315a85a49b7bac2fef1cb45744d/dccb04c3-0786-451b-8ade-1fde7b3c297d.doc\",\"name\":\"重读报名流程及说明-学生参考\",\"format\":\"doc\",\"size\":34304,\"md5\":\"85c33f665be9a0a4bfba4b01fd6776dc\"},{\"path\":\"/picture/article/75/6f/f6/0315a85a49b7bac2fef1cb45744d/601f4fd1-9abc-48ce-81d9-6beb6a64efa9.doc\",\"name\":\"学生替换课程认定申请表\",\"format\":\"doc\",\"size\":32768,\"md5\":\"27dd96f40985ec2beabe02f800d3fcdb\"},{\"path\":\"/picture/article/75/6f/f6/0315a85a49b7bac2fef1cb45744d/08610c2f-4721-4c87-948b-ba36d2e8acb3.xls\",\"name\":\"201601学期 开班重读课程 开课情况表\",\"format\":\"xls\",\"size\":292,\"md5\":\"41e58aa57c18a404c2d5e1a7783c8a0e\"}]},{\"path\":\"/s/75/t/134/0e/d5/info69333.htm\",\"name\":\"20161素质教育讲座通知及安排表\",\"date\":\"2016-09-20\",\"tag\":1,\"md5\":\"6dee907ea6b39b733ee9cf7d0756ce03\",\"attachments\":[{\"path\":\"/picture/article/75/03/1f/314dbe424de995b5a7f4724a7ac2/16b8e01c-ebdb-4435-995c-1c43a50440eb.xlsx\",\"name\":\"20161素质教育讲座安排\",\"format\":\"xlsx\",\"size\":14289,\"md5\":\"abfd903fe586bcbc86c33c12bfc03d08\"}]},{\"path\":\"/s/75/t/134/0e/e9/info69353.htm\",\"name\":\"关于公示2015级“卓越工程师教育培养计划”选拔录取名单的通知\",\"date\":\"2016-09-20\",\"tag\":3,\"md5\":\"7c49f0ededd483fc4ffce0676d4b803b\",\"attachments\":[{\"path\":\"mailto:zhangfan2008@ecust.edu.cn\",\"name\":\"zhangfan2008@ecust.edu.cn\",\"format\":\"\"},{\"path\":\"/picture/article/75/0c/04/daedea514bcabb3a969a193999e9/dc5e5077-7ea0-4140-82b8-036e7db31cf2.xlsx\",\"name\":\"附件:华东理工大学2015级“卓越工程师教育培养计划”试点班录取名单\",\"format\":\"xlsx\",\"size\":13636,\"md5\":\"14538cab99973c78c52321c02ba6f0d7\"}]},{\"path\":\"/s/75/t/134/0d/7d/info68989.htm\",\"name\":\"体育学院关于补考、缓考、重修、保健班及学生成绩疑问处理的通知\",\"date\":\"2016-09-20\",\"tag\":4,\"md5\":\"b315d4f3e6f828b2e28ebb29178e95f6\",\"attachments\":[]}]",
"language": "javascript",
"rawDataType": "text",
"state": {
"size": "normal"
},
"previewType": "html",
"searchResultScrolledTo": "-1",
"version": null,
"requestObject": "{\"url\":\"{{address}}/{{ecust}}/{{jwc}}/newses\",\"headers\":[{\"key\":\"{{header-user-key}}\",\"value\":\"{{header-user-value}}\",\"enabled\":true}],\"data\":null,\"method\":\"GET\",\"dataMode\":\"params\"}",
"createdAt": "2016-09-22T14:18:09.000Z",
"updatedAt": "2016-09-22T14:18:09.000Z"
}
]
},
{
"id": "013e9e57-00f3-b3ef-4abe-53e76b07622c",
"headers": "{{header-user-key}}: {{header-user-value}}\n",
"url": "{{address-api}}/ecust/activities/{{activity-id}}/images/{{image-id}}",
"preRequestScript": "",
"pathVariables": {},
"method": "GET",
"data": [],
"dataMode": "raw",
"tests": "var res = JSON.parse(responseBody);\n\ntests[\"ecust-activity-image-detail\"] = res && res.imageID && res.name;\npostman.setEnvironmentVariable(\"image-id\", res.imageID);\n\n",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1486735293021,
"name": "Get Image",
"description": "# Create A Note\n\n> Created by Fisher on 2016-10-03 at 12:01.\n\nMethod: **POST**.\n\n---\n\n## Request\n\n- name: {String}\n - note name\n- value='': {String}\n - note content\n- type=default: {Number}\n - note type\n- permission=default: {Number}\n - note permission\n- tags='': {String}\n - note tag\n- desc=substr(100): {String}\n - note description\n\n## Response\n\n---\n\n",
"collectionId": "2ec467b1-77b9-3e88-8c2e-57a90d857572",
"responses": [
{
"owner": "822070",
"lastUpdatedBy": "822070",
"lastRevision": 619995097,
"request": {
"url": "{{address}}/{{ecust}}/{{library}}/status",
"headers": [],
"data": null,
"method": "GET",
"dataMode": "params"
},
"id": "9430a43c-e294-a660-f1b2-15e5d7202183",
"name": "library-status",
"status": "",
"responseCode": {
"code": 200,
"name": "OK"
},
"time": "29",
"headers": [
{
"name": "Access-Control-Allow-Origin",
"key": "Access-Control-Allow-Origin",
"value": "*",
"description": ""
},
{
"name": "Connection",
"key": "Connection",
"value": "keep-alive",
"description": ""
},
{
"name": "Content-Length",
"key": "Content-Length",
"value": "85",
"description": ""
},
{
"name": "Content-Type",
"key": "Content-Type",
"value": "application/json; charset=utf-8",
"description": ""
},
{
"name": "Date",
"key": "Date",
"value": "Thu, 22 Sep 2016 13:16:38 GMT",
"description": ""
},
{
"name": "ETag",
"key": "ETag",
"value": "W/\"55-og2tH9rzLW8XxnvbSdFgPA\"",
"description": ""
},
{
"name": "Vary",
"key": "Vary",
"value": "Accept-Encoding",
"description": ""
},
{
"name": "X-Content-Type-Options",
"key": "X-Content-Type-Options",
"value": "nosniff",
"description": ""
},
{
"name": "X-Powered-By",
"key": "X-Powered-By",
"value": "Express",
"description": ""
},
{
"name": "errcode",
"key": "errcode",
"value": "0",
"description": ""
}
],
"cookies": [],
"mime": "",
"text": "{\"today\":3139,\"available\":[15,151,203,170,146,13],\"occupied\":[21,171,258,202,203,43]}",
"language": "javascript",
"rawDataType": "text",
"state": {
"size": "normal"
},
"previewType": "html",
"searchResultScrolledTo": "-1",
"version": null,
"requestObject": "{\"url\":\"{{address}}/{{ecust}}/{{library}}/status\",\"headers\":[],\"data\":null,\"method\":\"GET\",\"dataMode\":\"params\"}",
"createdAt": "2016-10-05T16:14:07.000Z",
"updatedAt": "2016-10-05T16:14:07.000Z",
"write": true
},
{
"owner": "822070",
"lastUpdatedBy": "822070",
"lastRevision": 619995097,
"request": {
"url": "{{address}}/{{ecust}}/{{library}}/status",
"headers": [],
"data": null,
"method": "GET",
"dataMode": "params"
},
"id": "0cdce196-7797-0725-0333-b75d6baa0412",
"name": "library-status",
"status": "",
"responseCode": {
"code": 200,
"name": "OK"
},
"time": "29",
"headers": [
{
"name": "Access-Control-Allow-Origin",
"key": "Access-Control-Allow-Origin",
"value": "*",
"description": ""
},
{
"name": "Connection",
"key": "Connection",
"value": "keep-alive",
"description": ""
},
{
"name": "Content-Length",
"key": "Content-Length",
"value": "85",
"description": ""
},
{
"name": "Content-Type",
"key": "Content-Type",
"value": "application/json; charset=utf-8",
"description": ""
},
{
"name": "Date",
"key": "Date",
"value": "Thu, 22 Sep 2016 13:16:38 GMT",
"description": ""
},
{
"name": "ETag",
"key": "ETag",
"value": "W/\"55-og2tH9rzLW8XxnvbSdFgPA\"",
"description": ""
},
{
"name": "Vary",
"key": "Vary",
"value": "Accept-Encoding",
"description": ""
},
{
"name": "X-Content-Type-Options",
"key": "X-Content-Type-Options",
"value": "nosniff",
"description": ""
},
{
"name": "X-Powered-By",
"key": "X-Powered-By",
"value": "Express",
"description": ""
},
{
"name": "errcode",
"key": "errcode",
"value": "0",
"description": ""
}
],
"cookies": [],
"mime": "",
"text": "{\"today\":3139,\"available\":[15,151,203,170,146,13],\"occupied\":[21,171,258,202,203,43]}",
"language": "javascript",
"rawDataType": "text",
"state": {
"size": "normal"
},
"previewType": "html",
"searchResultScrolledTo": "-1",
"version": null,
"requestObject": "{\"url\":\"{{address}}/{{ecust}}/{{library}}/status\",\"headers\":[],\"data\":null,\"method\":\"GET\",\"dataMode\":\"params\"}",
"createdAt": "2016-10-05T16:14:07.000Z",
"updatedAt": "2016-10-05T16:14:07.000Z",
"write": true
}
],
"rawModeData": ""
},
{
"id": "01886d7a-9dcb-ab54-0727-682e53aefe27",
"headers": "{{header-user-key}}: {{header-user-value}}\nContent-Type: application/json\n",
"url": "{{address-api}}/ecust/activities/{{activity-id}}/images/{{image-id}}",
"preRequestScript": "",
"pathVariables": {},
"method": "PATCH",
"data": [],
"dataMode": "raw",
"tests": "var res = JSON.parse(responseBody);\n\ntests[\"ecust-activity-update-image\"] = res && res.name;\n\npostman.setEnvironmentVariable(\"image-id\", res.imageID);\n\n",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1486737656435,
"name": "Update Image",
"description": "# Create A Note\n\n> Created by Fisher on 2016-10-03 at 12:01.\n\nMethod: **POST**.\n\n---\n\n## Request\n\n- name: {String}\n - note name\n- value='': {String}\n - note content\n- type=default: {Number}\n - note type\n- permission=default: {Number}\n - note permission\n- tags='': {String}\n - note tag\n- desc=substr(100): {String}\n - note description\n\n## Response\n\n---\n\n",
"collectionId": "2ec467b1-77b9-3e88-8c2e-57a90d857572",
"responses": [
{
"owner": "822070",
"lastUpdatedBy": "822070",
"lastRevision": 619995097,
"request": {
"url": "{{address}}/{{ecust}}/{{library}}/status",
"headers": [],
"data": null,
"method": "GET",
"dataMode": "params"
},
"id": "b9741762-eea6-b6ca-8446-30b0c1de9ebd",
"name": "library-status",
"status": "",
"responseCode": {
"code": 200,
"name": "OK"
},
"time": "29",
"headers": [
{
"name": "Access-Control-Allow-Origin",
"key": "Access-Control-Allow-Origin",
"value": "*",
"description": ""
},
{
"name": "Connection",
"key": "Connection",
"value": "keep-alive",
"description": ""
},
{
"name": "Content-Length",
"key": "Content-Length",
"value": "85",
"description": ""
},
{
"name": "Content-Type",
"key": "Content-Type",
"value": "application/json; charset=utf-8",
"description": ""
},
{
"name": "Date",
"key": "Date",
"value": "Thu, 22 Sep 2016 13:16:38 GMT",
"description": ""
},
{
"name": "ETag",
"key": "ETag",
"value": "W/\"55-og2tH9rzLW8XxnvbSdFgPA\"",
"description": ""
},
{
"name": "Vary",
"key": "Vary",
"value": "Accept-Encoding",
"description": ""
},
{
"name": "X-Content-Type-Options",
"key": "X-Content-Type-Options",
"value": "nosniff",
"description": ""
},
{
"name": "X-Powered-By",
"key": "X-Powered-By",
"value": "Express",
"description": ""
},
{
"name": "errcode",
"key": "errcode",
"value": "0",
"description": ""
}
],
"cookies": [],
"mime": "",
"text": "{\"today\":3139,\"available\":[15,151,203,170,146,13],\"occupied\":[21,171,258,202,203,43]}",
"language": "javascript",
"rawDataType": "text",
"state": {
"size": "normal"
},
"previewType": "html",
"searchResultScrolledTo": "-1",
"version": null,
"requestObject": "{\"url\":\"{{address}}/{{ecust}}/{{library}}/status\",\"headers\":[],\"data\":null,\"method\":\"GET\",\"dataMode\":\"params\"}",
"createdAt": "2016-10-05T16:14:07.000Z",
"updatedAt": "2016-10-05T16:14:07.000Z",
"write": true
},
{
"owner": "822070",
"lastUpdatedBy": "822070",
"lastRevision": 619995097,
"request": {
"url": "{{address}}/{{ecust}}/{{library}}/status",
"headers": [],
"data": null,
"method": "GET",
"dataMode": "params"
},
"id": "9d0f9dfc-67da-cd14-108c-4c610480e244",
"name": "library-status",
"status": "",
"responseCode": {
"code": 200,
"name": "OK"
},
"time": "29",
"headers": [
{
"name": "Access-Control-Allow-Origin",
"key": "Access-Control-Allow-Origin",
"value": "*",
"description": ""
},
{
"name": "Connection",
"key": "Connection",
"value": "keep-alive",
"description": ""
},
{
"name": "Content-Length",
"key": "Content-Length",
"value": "85",
"description": ""
},
{
"name": "Content-Type",
"key": "Content-Type",
"value": "application/json; charset=utf-8",
"description": ""
},
{
"name": "Date",
"key": "Date",
"value": "Thu, 22 Sep 2016 13:16:38 GMT",
"description": ""
},
{
"name": "ETag",
"key": "ETag",
"value": "W/\"55-og2tH9rzLW8XxnvbSdFgPA\"",
"description": ""
},
{
"name": "Vary",
"key": "Vary",
"value": "Accept-Encoding",
"description": ""
},
{
"name": "X-Content-Type-Options",
"key": "X-Content-Type-Options",
"value": "nosniff",
"description": ""
},
{
"name": "X-Powered-By",
"key": "X-Powered-By",
"value": "Express",
"description": ""
},
{
"name": "errcode",
"key": "errcode",
"value": "0",
"description": ""
}
],
"cookies": [],
"mime": "",
"text": "{\"today\":3139,\"available\":[15,151,203,170,146,13],\"occupied\":[21,171,258,202,203,43]}",
"language": "javascript",
"rawDataType": "text",
"state": {
"size": "normal"
},
"previewType": "html",
"searchResultScrolledTo": "-1",
"version": null,
"requestObject": "{\"url\":\"{{address}}/{{ecust}}/{{library}}/status\",\"headers\":[],\"data\":null,\"method\":\"GET\",\"dataMode\":\"params\"}",
"createdAt": "2016-10-05T16:14:07.000Z",
"updatedAt": "2016-10-05T16:14:07.000Z",
"write": true
}
],
"rawModeData": "{\n\t\"name\": \"Automation\"\n}"
},
{
"id": "0f8a7956-b635-2f41-8f7c-1c23aa4e01c0",
"headers": "{{header-user-key}}: {{header-user-value}}\n",
"url": "{{address-apis}}/lovecust/users/profile/avatar",
"preRequestScript": null,
"pathVariables": {},
"method": "PUT",
"data": [
{
"key": "avatar",
"value": "avatar-caillou.jpg",
"type": "file",
"enabled": true
}
],
"dataMode": "params",
"tests": "\n\n",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1482078399447,
"name": "users-profile-avatar",
"description": "# Update User Profile\n\n> Created by Fisher on 2016-09-23 at 09:37.\n\nMethod: **GET**.\n\n---\n\n\n## Response\n\n{{response-okay-object}}\n\n---\n\n",
"collectionId": "2ec467b1-77b9-3e88-8c2e-57a90d857572",
"responses": []
},
{
"id": "1be608e7-fd8e-ae3a-04c3-2869f67502c8",
"headers": "{{header-user-key}}: {{header-user-value}}\nContent-Type: application/json\n",
"url": "{{address-api}}/ecust/activities/{{activity-id}}/images/{{image-id}}",
"preRequestScript": "",
"pathVariables": {},
"method": "DELETE",
"data": [],
"dataMode": "raw",
"tests": "var res = JSON.parse(responseBody);\n\ntests[\"app-activity-remove-member\"] = res && res.name;\n\n",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1486737671616,
"name": "Remove Image",
"description": "# Create A Note\n\n> Created by Fisher on 2016-10-03 at 12:01.\n\nMethod: **POST**.\n\n---\n\n## Request\n\n- name: {String}\n - note name\n- value='': {String}\n - note content\n- type=default: {Number}\n - note type\n- permission=default: {Number}\n - note permission\n- tags='': {String}\n - note tag\n- desc=substr(100): {String}\n - note description\n\n## Response\n\n---\n\n",
"collectionId": "2ec467b1-77b9-3e88-8c2e-57a90d857572",
"responses": [
{
"owner": "822070",
"lastUpdatedBy": "822070",
"lastRevision": 619995097,
"request": {
"url": "{{address}}/{{ecust}}/{{library}}/status",
"headers": [],
"data": null,
"method": "GET",
"dataMode": "params"
},
"id": "d75e3602-7710-5be1-a932-5985d6610fba",
"name": "library-status",
"status": "",
"responseCode": {
"code": 200,
"name": "OK"
},
"time": "29",
"headers": [
{
"name": "Access-Control-Allow-Origin",
"key": "Access-Control-Allow-Origin",
"value": "*",
"description": ""
},
{
"name": "Connection",
"key": "Connection",
"value": "keep-alive",
"description": ""
},
{
"name": "Content-Length",
"key": "Content-Length",
"value": "85",
"description": ""
},
{
"name": "Content-Type",
"key": "Content-Type",
"value": "application/json; charset=utf-8",
"description": ""
},
{
"name": "Date",
"key": "Date",
"value": "Thu, 22 Sep 2016 13:16:38 GMT",
"description": ""
},
{
"name": "ETag",
"key": "ETag",
"value": "W/\"55-og2tH9rzLW8XxnvbSdFgPA\"",
"description": ""
},
{
"name": "Vary",
"key": "Vary",
"value": "Accept-Encoding",
"description": ""
},
{
"name": "X-Content-Type-Options",
"key": "X-Content-Type-Options",
"value": "nosniff",
"description": ""
},
{
"name": "X-Powered-By",
"key": "X-Powered-By",
"value": "Express",
"description": ""
},
{
"name": "errcode",
"key": "errcode",
"value": "0",
"description": ""
}
],
"cookies": [],
"mime": "",
"text": "{\"today\":3139,\"available\":[15,151,203,170,146,13],\"occupied\":[21,171,258,202,203,43]}",
"language": "javascript",
"rawDataType": "text",
"state": {
"size": "normal"
},
"previewType": "html",
"searchResultScrolledTo": "-1",
"version": null,
"requestObject": "{\"url\":\"{{address}}/{{ecust}}/{{library}}/status\",\"headers\":[],\"data\":null,\"method\":\"GET\",\"dataMode\":\"params\"}",
"createdAt": "2016-10-05T16:14:07.000Z",
"updatedAt": "2016-10-05T16:14:07.000Z",
"write": true
},
{
"owner": "822070",
"lastUpdatedBy": "822070",
"lastRevision": 619995097,
"request": {
"url": "{{address}}/{{ecust}}/{{library}}/status",
"headers": [],
"data": null,
"method": "GET",
"dataMode": "params"
},
"id": "086052e4-69b1-c26f-7bc3-8734c1f70525",
"name": "library-status",
"status": "",
"responseCode": {
"code": 200,
"name": "OK"
},
"time": "29",
"headers": [
{
"name": "Access-Control-Allow-Origin",
"key": "Access-Control-Allow-Origin",
"value": "*",
"description": ""
},
{
"name": "Connection",
"key": "Connection",
"value": "keep-alive",
"description": ""
},
{
"name": "Content-Length",
"key": "Content-Length",
"value": "85",
"description": ""
},
{
"name": "Content-Type",
"key": "Content-Type",
"value": "application/json; charset=utf-8",
"description": ""
},
{
"name": "Date",
"key": "Date",
"value": "Thu, 22 Sep 2016 13:16:38 GMT",
"description": ""
},
{
"name": "ETag",
"key": "ETag",
"value": "W/\"55-og2tH9rzLW8XxnvbSdFgPA\"",
"description": ""
},
{
"name": "Vary",
"key": "Vary",
"value": "Accept-Encoding",
"description": ""
},
{
"name": "X-Content-Type-Options",
"key": "X-Content-Type-Options",
"value": "nosniff",
"description": ""
},
{
"name": "X-Powered-By",
"key": "X-Powered-By",
"value": "Express",
"description": ""
},
{
"name": "errcode",
"key": "errcode",
"value": "0",
"description": ""
}
],
"cookies": [],
"mime": "",
"text": "{\"today\":3139,\"available\":[15,151,203,170,146,13],\"occupied\":[21,171,258,202,203,43]}",
"language": "javascript",
"rawDataType": "text",
"state": {
"size": "normal"
},
"previewType": "html",
"searchResultScrolledTo": "-1",
"version": null,
"requestObject": "{\"url\":\"{{address}}/{{ecust}}/{{library}}/status\",\"headers\":[],\"data\":null,\"method\":\"GET\",\"dataMode\":\"params\"}",
"createdAt": "2016-10-05T16:14:07.000Z",
"updatedAt": "2016-10-05T16:14:07.000Z",
"write": true
}
],
"rawModeData": ""
},
{
"id": "1cbc9dd6-3e49-de00-675e-f071cf2a5b52",
"headers": "{{header-user-key}}: {{header-user-value}}\nContent-Type: application/json\n",
"url": "{{address-apis}}/lovecust/users/feedback",
"preRequestScript": "",
"pathVariables": {},
"method": "POST",
"data": [],
"dataMode": "raw",
"tests": "var res = JSON.parse(responseBody);\n\ntests[\"Feedback\"] = res;\n\n",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1482063857508,
"name": "feedback",
"description": "# Send feedback to lovecust.\n\n> Created by Fisher on 2016-09-23 at 10:15.\n\nMethod: **POST**.\n\n---\n\n\n## Response\n\n{{feedback-object}}\n\n---\n\n",
"collectionId": "2ec467b1-77b9-3e88-8c2e-57a90d857572",
"responses": [],
"rawModeData": "{\n \"nick\": \"Postman\",\n \"value\": \"Nice to meet u :)\"\n}"
},
{
"id": "226c49dd-2594-5c98-17c7-4b06250a72da",
"headers": "{{header-user-key}}: {{header-user-value}}\n",
"url": "{{address-apis}}/ecust/library/status/statistics?interval=1&limit=1044",
"preRequestScript": null,
"pathVariables": {},
"method": "GET",
"data": null,
"dataMode": "params",
"tests": "var res = JSON.parse(responseBody);\n\n// Make sure today's number is positive.\n// Make sure 6 floors.\n// Make sure each floor have the expected seats.\ntests[\"Library-Status-\" + res.length] = res instanceof Array;\n\nvar status;\n\nfor(var i = 0; i < res.length; i++){\n status = res[i];\n tests[\"Library-Status-\"+i] = status.today >= 0 && \n status.available.length === 6 && status.occupied.length === 6 &&\n \t\tstatus.available[0] + status.occupied[0] === 36 &&\n \t\tstatus.available[1] + status.occupied[1] === 322 &&\n \t\tstatus.available[2] + status.occupied[2] === 461 &&\n \t\tstatus.available[3] + status.occupied[3] === 372 &&\n \t\tstatus.available[4] + status.occupied[4] === 349 &&\n \t\tstatus.available[5] + status.occupied[5] === 56;\n\n}",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1482047966228,
"name": "library-status statistics",
"description": "# Ecust Library Status\n\n> Created by Fisher on 2016-09-22 at 21:19.\n\nMethod: **GET**.\n\n---\n\n\n## Response\n\n- today: {Number}\n - today's students amount.\n- available: [Number]\n - Available seats of each floor.\n- occupied: [Number]\n - Occupied seats of each floor.\n\n---\n\n",
"collectionId": "2ec467b1-77b9-3e88-8c2e-57a90d857572",
"responses": [
{
"owner": "822070",
"lastUpdatedBy": "822070",
"lastRevision": 583065551,
"request": "85e303c0-ae32-2abb-7af3-2cc0853a5ef5",
"id": "ffc482c4-5b78-91e5-ed94-deaec14d7875",
"name": "library-status",
"status": "",
"responseCode": {
"code": 200,
"name": "OK"
},
"time": "29",
"headers": [
{
"name": "Access-Control-Allow-Origin",
"key": "Access-Control-Allow-Origin",
"value": "*",
"description": ""
},
{
"name": "Connection",
"key": "Connection",
"value": "keep-alive",
"description": ""
},
{
"name": "Content-Length",
"key": "Content-Length",
"value": "85",
"description": ""
},
{
"name": "Content-Type",
"key": "Content-Type",
"value": "application/json; charset=utf-8",
"description": ""
},
{
"name": "Date",
"key": "Date",
"value": "Thu, 22 Sep 2016 13:16:38 GMT",
"description": ""
},
{
"name": "ETag",
"key": "ETag",
"value": "W/\"55-og2tH9rzLW8XxnvbSdFgPA\"",
"description": ""
},
{
"name": "Vary",
"key": "Vary",
"value": "Accept-Encoding",
"description": ""