├── LICENSE └── README.md /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 guangqiang-liu 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # OneM-API 2 | 总结出OneM开源项目中使用到的模块数据API 3 | 4 | # OneM(详细请参照OneM源码) 5 | 6 | * 图文 7 | * 图文详情列表 8 | * 图文详情 9 | * 图文栅格列表 10 | 11 | * 阅读 12 | * 阅读banner 13 | * 阅读banner详情 14 | * 阅读文章列表 15 | * 散文详情 16 | * 连载详情 17 | * 问答详情 18 | * 阅读评论列表 19 | * 阅读月份列表 20 | 21 | * 音乐 22 | * 音乐列表 23 | * 音乐详情 24 | 25 | * 电影 参考下面的时光网API 26 | 27 | # 时光网 28 | 29 | * [正在热映](#正在热映) 30 | * [即将上映](#即将上映) 31 | * [影片详情](#影片详情) 32 | * [评论列表](#评论列表) 33 | * [预告片](#预告片) 34 | * [演员列表](#演员列表) 35 | * [剧照列表](#剧照列表) 36 | 37 | ### 正在热映 38 | 39 | **url:https://api-m.mtime.cn/Showtime/LocationMovies.api?locationId=?** 40 | 41 | **示例url:[https://api-m.mtime.cn/Showtime/LocationMovies.api?locationId=290](https://api-m.mtime.cn/Showtime/LocationMovies.api?locationId=290)** 42 | 43 | **json对象** 44 | 45 | ``` 46 | { 47 | "bImg": "http://img5.mtime.cn/mg/2017/01/25/172446.45527982.jpg", 48 | "date": "2017-02-02", 49 | "lid": 20, 50 | "ms": [ 51 | { 52 | "NearestCinemaCount": 152, 53 | "NearestDay": 1486022400, 54 | "NearestShowtimeCount": 1767, 55 | "aN1": "成龙", 56 | "aN2": "李治廷", 57 | "cC": 152, 58 | "commonSpecial": "大哥携“小鲜肉”全球寻宝石", 59 | "d": "108", 60 | "dN": "唐季礼", 61 | "def": 0, 62 | "id": 217896, 63 | "img": "http://img5.mtime.cn/mt/2017/01/13/191421.14582165_1280X720X2.jpg", 64 | "is3D": false, 65 | "isDMAX": false, 66 | "isFilter": false, 67 | "isHot": true, 68 | "isIMAX": false, 69 | "isIMAX3D": false, 70 | "isNew": false, 71 | "isTicket": true, 72 | "m": "", 73 | "movieType": "动作 / 冒险 / 喜剧", 74 | "p": [ 75 | "动作冒险喜剧" 76 | ], 77 | "r": 6.2, 78 | "rc": 0, 79 | "rd": "20170128", 80 | "rsC": 0, 81 | "sC": 3003, 82 | "t": "功夫瑜伽", 83 | "tCn": "功夫瑜伽", 84 | "tEn": "Kung-Fu Yoga", 85 | "ua": -1, 86 | "versions": [], 87 | "wantedCount": 1132 88 | }, 89 | { 90 | "NearestCinemaCount": 151, 91 | "NearestDay": 1486022400, 92 | "NearestShowtimeCount": 1112, 93 | "aN1": "邓超", 94 | "aN2": "彭于晏", 95 | "cC": 151, 96 | "commonSpecial": "邓超彭于晏一起街头热血", 97 | "d": "102", 98 | "dN": "韩寒", 99 | "def": 0, 100 | "id": 237054, 101 | "img": "http://img5.mtime.cn/mt/2017/01/12/181512.62044353_1280X720X2.jpg", 102 | "is3D": false, 103 | "isDMAX": false, 104 | "isFilter": false, 105 | "isHot": true, 106 | "isIMAX": false, 107 | "isIMAX3D": false, 108 | "isNew": false, 109 | "isTicket": true, 110 | "m": "", 111 | "movieType": "喜剧", 112 | "p": [ 113 | "喜剧" 114 | ], 115 | "r": 6.5, 116 | "rc": 0, 117 | "rd": "20170128", 118 | "rsC": 0, 119 | "sC": 1928, 120 | "t": "乘风破浪", 121 | "tCn": "乘风破浪", 122 | "tEn": "Duckweed", 123 | "ua": -1, 124 | "versions": [ 125 | { 126 | "enum": 1, 127 | "version": "2D" 128 | } 129 | ], 130 | "wantedCount": 2802 131 | } 132 | ], 133 | "newActivitiesTime": 0, 134 | "totalComingMovie": 39, 135 | "voucherMsg": "" 136 | } 137 | ``` 138 | 139 | ### 即将上映 140 | 141 | **url:https://api-m.mtime.cn/Movie/MovieComingNew.api?locationId=?** 142 | 143 | **示例url:[https://api-m.mtime.cn/Movie/MovieComingNew.api?locationId=290](https://api-m.mtime.cn/Movie/MovieComingNew.api?locationId=290)** 144 | 145 | **json对象** 146 | 147 | ``` 148 | { 149 | "attention": [ 150 | { 151 | "actor1": "范·迪塞尔", 152 | "actor2": "露比·罗丝", 153 | "director": "D·J·卡卢索", 154 | "id": 125805, 155 | "image": "http://img5.mtime.cn/mt/2017/01/05/105822.16893974_1280X720X2.jpg", 156 | "isFilter": false, 157 | "isTicket": true, 158 | "isVideo": true, 159 | "locationName": "美国", 160 | "rDay": 10, 161 | "rMonth": 2, 162 | "rYear": 2017, 163 | "releaseDate": "2月10日上映", 164 | "title": "极限特工:终极回归", 165 | "type": "动作 / 冒险 / 惊悚", 166 | "videoCount": 3, 167 | "videos": [ 168 | { 169 | "hightUrl": "", 170 | "image": "http://img5.mtime.cn/mg/2017/01/05/105124.83548335.jpg", 171 | "length": 30, 172 | "title": "极限特工:终极回归 中国版预告片", 173 | "url": "http://vf.test.com/Video/2017/01/05/mp4/170105105137886980.mp4", 174 | "videoId": 64107 175 | }, 176 | { 177 | "hightUrl": "", 178 | "image": "http://img5.mtime.cn/mg/2016/11/02/082857.54680705.jpg", 179 | "length": 139, 180 | "title": "极限特工:终极回归 中文版终极预告片", 181 | "url": "http://vf.test.com/Video/2016/11/02/mp4/161102083059175649.mp4", 182 | "videoId": 63180 183 | }, 184 | { 185 | "hightUrl": "", 186 | "image": "http://img31.mtime.cn/mg/2016/08/05/122731.94053608.jpg", 187 | "length": 91, 188 | "title": "极限特工:终极回归 中文版预告片", 189 | "url": "http://vf.test.com/Video/2016/08/05/mp4/160805122727094193.mp4", 190 | "videoId": 61933 191 | } 192 | ], 193 | "wantedCount": 1359 194 | }, 195 | { 196 | "actor1": "杜天皓", 197 | "actor2": "闫妮", 198 | "director": "黄美娜", 199 | "id": 238265, 200 | "image": "http://img5.mtime.cn/mt/2017/01/06/103911.39785227_1280X720X2.jpg", 201 | "isFilter": false, 202 | "isTicket": false, 203 | "isVideo": true, 204 | "locationName": "中国", 205 | "rDay": 10, 206 | "rMonth": 3, 207 | "rYear": 2017, 208 | "releaseDate": "3月10日上映", 209 | "title": "美容针", 210 | "type": "爱情 / 剧情", 211 | "videoCount": 1, 212 | "videos": [ 213 | { 214 | "hightUrl": "", 215 | "image": "http://img5.mtime.cn/mg/2017/01/09/134440.69569620.jpg", 216 | "length": 77, 217 | "title": "美容针 先导预告片", 218 | "url": "http://vf.test.com/Video/2017/01/09/mp4/170109134511076173.mp4", 219 | "videoId": 64162 220 | } 221 | ], 222 | "wantedCount": 13 223 | } 224 | ], 225 | "moviecomings": [ 226 | { 227 | "actor1": "贾乃亮", 228 | "actor2": "马丽", 229 | "director": "郭大雷", 230 | "id": 230769, 231 | "image": "http://img5.mtime.cn/mt/2017/01/16/104630.29361196_1280X720X2.jpg", 232 | "isFilter": false, 233 | "isTicket": true, 234 | "isVideo": true, 235 | "locationName": "中国", 236 | "rDay": 3, 237 | "rMonth": 2, 238 | "rYear": 2017, 239 | "releaseDate": "2月3日上映", 240 | "title": "东北往事之破马张飞", 241 | "type": "喜剧", 242 | "videoCount": 3, 243 | "videos": [ 244 | { 245 | "hightUrl": "", 246 | "image": "http://img5.mtime.cn/mg/2016/11/01/211216.75603152.jpg", 247 | "length": 58, 248 | "title": "东北往事之破马张飞 先行版预告片", 249 | "url": "http://vf.test.com/Video/2016/11/01/mp4/161101211204394445.mp4", 250 | "videoId": 63176 251 | }, 252 | { 253 | "hightUrl": "", 254 | "image": "http://img5.mtime.cn/mg/2016/12/06/215919.97317974.jpg", 255 | "length": 89, 256 | "title": "东北往事之破马张飞 剧情版预告片", 257 | "url": "http://vf.test.com/Video/2016/12/06/mp4/161206215730098083.mp4", 258 | "videoId": 63664 259 | }, 260 | { 261 | "hightUrl": "", 262 | "image": "http://img5.mtime.cn/mg/2016/12/29/153033.28636603.jpg", 263 | "length": 53, 264 | "title": "东北往事之破马张飞 彩蛋之为金士杰庆生", 265 | "url": "http://vf.test.com/Video/2016/12/29/mp4/161229153012984378.mp4", 266 | "videoId": 64028 267 | } 268 | ], 269 | "wantedCount": 1677 270 | }, 271 | { 272 | "actor1": "山新", 273 | "actor2": "姚雷", 274 | "director": "邓伟锋", 275 | "id": 233227, 276 | "image": "http://img5.mtime.cn/mt/2017/01/17/173909.17348918_1280X720X2.jpg", 277 | "isFilter": false, 278 | "isTicket": true, 279 | "isVideo": true, 280 | "locationName": "中国", 281 | "rDay": 5, 282 | "rMonth": 2, 283 | "rYear": 2017, 284 | "releaseDate": "2月5日上映", 285 | "title": "萤火奇兵", 286 | "type": "动画 / 奇幻 / 冒险", 287 | "videoCount": 3, 288 | "videos": [ 289 | { 290 | "hightUrl": "", 291 | "image": "http://img31.mtime.cn/mg/2016/06/29/142348.49429265.jpg", 292 | "length": 84, 293 | "title": "萤火奇兵 预告片", 294 | "url": "http://vf.test.com/Video/2016/06/29/mp4/160629142150295349.mp4", 295 | "videoId": 61192 296 | }, 297 | { 298 | "hightUrl": "", 299 | "image": "http://img31.mtime.cn/mg/2016/07/20/114328.48612333.jpg", 300 | "length": 45, 301 | "title": "萤火奇兵 先行版预告片", 302 | "url": "http://vf.test.com/Video/2016/07/20/mp4/160720114306954253.mp4", 303 | "videoId": 61554 304 | }, 305 | { 306 | "hightUrl": "", 307 | "image": "http://img5.mtime.cn/mg/2016/09/14/132405.13320533.jpg", 308 | "length": 93, 309 | "title": "预告片2", 310 | "url": "http://vf.test.com/Video/2016/09/14/mp4/160914132505167172.mp4", 311 | "videoId": 62519 312 | } 313 | ], 314 | "wantedCount": 179 315 | } 316 | ] 317 | } 318 | ``` 319 | 320 | ### 影片详情 321 | 322 | **url:https://ticket-api-m.mtime.cn/movie/detail.api?locationId=?&movieId=?** 323 | 324 | *movieId 从正在售票、正在热映、即将上映对应 json 的 movieId、id、id 字段中获取* 325 | 326 | **示例url:[https://ticket-api-m.mtime.cn/movie/detail.api?locationId=290&movieId=125805](https://ticket-api-m.mtime.cn/movie/detail.api?locationId=290&movieId=125805)** 327 | 328 | **json对象** 329 | 330 | ``` 331 | { 332 | "code": "1", 333 | "data": { 334 | "advertisement": { 335 | "advList": [ 336 | { 337 | "advTag": "", 338 | "endDate": 1514649599, 339 | "isHorizontalScreen": false, 340 | "isOpenH5": false, 341 | "startDate": 1451577600, 342 | "tag": "西游伏妖篇(票务)", 343 | "type": "203", 344 | "typeName": "影片详情页banner2", 345 | "url": "https://static4da.mtime.cn/feature/mobile/banner/2017/0122/210.html" 346 | } 347 | ], 348 | "count": 1, 349 | "error": "", 350 | "success": true 351 | }, 352 | "basic": { 353 | "actors": [ 354 | { 355 | "actorId": 913378, 356 | "img": "http://img31.mtime.cn/ph/2014/09/01/170748.64755972_1280X720X2.jpg", 357 | "name": "范·迪塞尔", 358 | "nameEn": "Vin Diesel", 359 | "roleImg": "http://img5.mtime.cn/mg/2017/01/05/162613.85098094.jpg", 360 | "roleName": "Xander Cage" 361 | } 362 | ], 363 | "award": { 364 | "awardList": [], 365 | "totalNominateAward": 0, 366 | "totalWinAward": 0 367 | }, 368 | "commentSpecial": "", 369 | "community": {}, 370 | "director": { 371 | "directorId": 903521, 372 | "img": "http://img31.mtime.cn/ph/2016/09/02/144150.57291017_1280X720X2.jpg", 373 | "name": "D·J·卡卢索", 374 | "nameEn": "D.J. Caruso" 375 | }, 376 | "festivals": [], 377 | "hotRanking": 5, 378 | "img": "http://img5.mtime.cn/mt/2017/01/05/105822.16893974_1280X720X2.jpg", 379 | "is3D": true, 380 | "isDMAX": true, 381 | "isEggHunt": false, 382 | "isFilter": false, 383 | "isIMAX": false, 384 | "isIMAX3D": true, 385 | "isTicket": true, 386 | "message": "该操作将清除您对该片的评分!是否确认?", 387 | "mins": "107分钟", 388 | "movieId": 125805, 389 | "name": "极限特工:终极回归", 390 | "nameEn": "xXx: The Return of Xander Cage", 391 | "overallRating": -1, 392 | "personCount": 123, 393 | "quizGame": {}, 394 | "releaseArea": "中国", 395 | "releaseDate": "20170210", 396 | "showCinemaCount": 27, 397 | "showDay": 1486627200, 398 | "showtimeCount": 14, 399 | "stageImg": { 400 | "count": 124, 401 | "list": [ 402 | { 403 | "imgId": 7180661, 404 | "imgUrl": "http://img31.mtime.cn/pi/2016/04/06/163644.66635601_1280X720X2.jpg" 405 | }, 406 | { 407 | "imgId": 7301637, 408 | "imgUrl": "http://img5.mtime.cn/pi/2016/11/02/174909.42908242_1280X720X2.jpg" 409 | }, 410 | { 411 | "imgId": 7203067, 412 | "imgUrl": "http://img31.mtime.cn/pi/2016/04/07/160807.83892239_1280X720X2.jpg" 413 | }, 414 | { 415 | "imgId": 7301211, 416 | "imgUrl": "http://img5.mtime.cn/pi/2016/11/01/091327.68190533_1280X720X2.jpg" 417 | } 418 | ] 419 | }, 420 | "story": "《极限特工3》将故事聚焦在由范·迪塞尔带头的的特工小队和以甄子丹为首的反派组织之间的对决。在这部作品中,迪塞尔饰演的特工凯奇不再是孤胆英雄,他将与一群出色的伙伴共同作战:塞缪尔·杰克逊饰演的国安局特工,印度女星迪皮卡·帕度柯妮饰演的与凯奇颇有渊源的女猎人,凭借《吸血鬼日记》走红的妮娜·杜波夫扮演的技术专家,《女子监狱》女星露比·罗丝饰演的狙击手,中国当红偶像演员吴亦凡饰演的特工Nicks。", 421 | "style": { 422 | "isLeadPage": 0, 423 | "leadImg": "https://img2.mtime.cn/mg/.jpg", 424 | "leadUrl": "" 425 | }, 426 | "totalNominateAward": 0, 427 | "totalWinAward": 0, 428 | "type": [ 429 | "动作", 430 | "冒险", 431 | "惊悚" 432 | ], 433 | "url": "https://movie.mtime.com/125805/", 434 | "video": { 435 | "count": 18, 436 | "hightUrl": "https://vfx.mtime.cn/Video/2017/01/05/mp4/170105105137886980.mp4", 437 | "img": "http://img5.mtime.cn/mg/2017/01/05/105124.57142324_235X132X4.jpg", 438 | "title": "极限特工:终极回归 中国版预告片", 439 | "url": "https://vfx.mtime.cn/Video/2017/01/05/mp4/170105105137886980_480.mp4", 440 | "videoId": 64107 441 | } 442 | }, 443 | "boxOffice": { 444 | "movieId": 125805, 445 | "ranking": 41, 446 | "todayBox": 0, 447 | "todayBoxDes": "", 448 | "todayBoxDesUnit": "", 449 | "totalBox": 0, 450 | "totalBoxDes": "", 451 | "totalBoxUnit": "" 452 | }, 453 | "live": {}, 454 | "related": { 455 | "goodsCount": 0, 456 | "goodsList": [], 457 | "relateId": 0, 458 | "relatedUrl": "https://mall-wv.mtime.cn/#!/commerce/list/", 459 | "type": 0 460 | } 461 | }, 462 | "msg": "成功", 463 | "showMsg": "" 464 | } 465 | ``` 466 | 467 | ### 评论列表 468 | 469 | **url:https://ticket-api-m.mtime.cn/movie/hotComment.api?movieId=?** 470 | 471 | **示例url:[https://ticket-api-m.mtime.cn/movie/hotComment.api?movieId=125805](https://ticket-api-m.mtime.cn/movie/hotComment.api?movieId=125805)** 472 | 473 | **json对象** 474 | 475 | ``` 476 | { 477 | "code": "1", 478 | "data": { 479 | "mini": { 480 | "list": [ 481 | { 482 | "commentDate": 1485949110, 483 | "commentId": 41530503, 484 | "content": "小小可惜,甄子丹已经过了最能打的年纪,倘若在杀破狼时期的话,甄子丹一定发挥的更好!", 485 | "headImg": "//img32.mtime.cn/up/2016/04/21/164216.20185739_128X128.jpg", 486 | "img": "", 487 | "isHot": false, 488 | "isPraise": false, 489 | "locationName": "温哥华", 490 | "nickname": "百家影评", 491 | "praiseCount": 1, 492 | "rating": 0, 493 | "replyCount": 0 494 | } 495 | ], 496 | "total": 106 497 | }, 498 | "plus": { 499 | "list": [ 500 | { 501 | "commentDate": 1468225860, 502 | "commentId": 7967852, 503 | "content": "\n常年锃光瓦亮的光头、一身健硕的肌肉、还有那永恒不变的T恤背心,这是一位令人为之惊讶、欢呼的糙汉,他便是范·迪塞尔。\n\n糙汉的《速激》人生\n\n\n\n提到老范,你最熟悉他哪部电影?那肯定没有其他答案,肯定是《速度与激情》系列了。\n这部全球最风靡的赛车题材系列电影起初的男一号是保罗·沃克饰演的卧底警察,但电影上映后人们发现,老范才是最吸引眼球的。\n拍摄《速度与激情2》时,老范因为档期原因没有参演,电影...", 504 | "headImg": "//img32.mtime.cn/up/2013/06/26/161117.68950441_128X128.jpg", 505 | "isWantSee": false, 506 | "locationName": "", 507 | "nickname": "冷子墨", 508 | "rating": 7, 509 | "replyCount": 4, 510 | "title": "biubiubiu!看大汉玩转你的小心跳!——范·迪塞尔" 511 | } 512 | ], 513 | "total": 2 514 | } 515 | }, 516 | "msg": "", 517 | "showMsg": "" 518 | } 519 | ``` 520 | 521 | ### 预告片 522 | 523 | **url:https://api-m.mtime.cn/Movie/Video.api?pageIndex=?&movieId=?** 524 | 525 | **示例url:[https://api-m.mtime.cn/Movie/Video.api?pageIndex=1&movieId=217896](https://api-m.mtime.cn/Movie/Video.api?pageIndex=1&movieId=217896)** 526 | 527 | **json对象** 528 | 529 | ``` 530 | { 531 | "totalPageCount": 1, 532 | "totalCount": 13, 533 | "videoList": [ 534 | { 535 | "id": 63236, 536 | "url": "https://vfx.mtime.cn/Video/2016/11/06/mp4/161106175251674452_480.mp4", 537 | "hightUrl": "https://vfx.mtime.cn/Video/2016/11/06/mp4/161106175251674452.mp4", 538 | "image": "http://img5.mtime.cn/mg/2016/11/06/175108.73063349_235X132X4.jpg", 539 | "title": "功夫瑜伽 先行版预告片", 540 | "type": 0, 541 | "length": 73 542 | }, 543 | { 544 | "id": 63798, 545 | "url": "https://vfx.mtime.cn/Video/2016/12/14/mp4/161214210123816534_480.mp4", 546 | "hightUrl": "https://vfx.mtime.cn/Video/2016/12/14/mp4/161214210123816534.mp4", 547 | "image": "http://img5.mtime.cn/mg/2016/12/14/210343.18175212_235X132X4.jpg", 548 | "title": "功夫瑜伽 “冰岛版”预告片", 549 | "type": 0, 550 | "length": 78 551 | } 552 | ] 553 | } 554 | ``` 555 | 556 | ### 演员列表 557 | 558 | **url:https://api-m.mtime.cn/Movie/MovieCreditsWithTypes.api?movieId=?** 559 | 560 | **示例url:[https://api-m.mtime.cn/Movie/MovieCreditsWithTypes.api?movieId=217896](https://api-m.mtime.cn/Movie/MovieCreditsWithTypes.api?movieId=217896)** 561 | 562 | **json对象** 563 | 564 | ``` 565 | { 566 | "types": [ 567 | { 568 | "typeName": "导演", 569 | "typeNameEn": "Director", 570 | "persons": [ 571 | { 572 | "id": 892951, 573 | "name": "唐季礼", 574 | "nameEn": "Stanley Tong", 575 | "image": "http://img31.mtime.cn/ph/2014/02/22/192821.88623670_1280X720X2.jpg" 576 | } 577 | ] 578 | }, 579 | { 580 | "typeName": "演员", 581 | "typeNameEn": "Actor", 582 | "persons": [ 583 | { 584 | "id": 892908, 585 | "name": "成龙", 586 | "nameEn": "Jackie Chan", 587 | "image": "http://img31.mtime.cn/ph/2014/02/28/112422.17365543_1280X720X2.jpg", 588 | "personate": "Jack", 589 | "personateCn": "", 590 | "personateEn": "Jack", 591 | "roleCover": "http://img5.mtime.cn/mg/2017/01/11/145413.83105118_120X120X4.jpg" 592 | }, 593 | { 594 | "id": 1706195, 595 | "name": "李治廷", 596 | "nameEn": "Aarif Lee", 597 | "image": "http://img31.mtime.cn/ph/2016/08/29/141047.77357073_1280X720X2.jpg", 598 | "personate": "李琼斯", 599 | "personateCn": "李琼斯", 600 | "personateEn": "", 601 | "roleCover": "http://img5.mtime.cn/mg/2017/01/11/145626.54701937_120X120X4.jpg" 602 | } 603 | ] 604 | }, 605 | { 606 | "typeName": "编剧", 607 | "typeNameEn": "Writer", 608 | "persons": [ 609 | { 610 | "id": 892951, 611 | "name": "唐季礼", 612 | "nameEn": "Stanley Tong", 613 | "image": "http://img31.mtime.cn/ph/2014/02/22/192821.88623670_1280X720X2.jpg" 614 | } 615 | ] 616 | }, 617 | { 618 | "typeName": "制作人", 619 | "typeNameEn": "Produced by", 620 | "persons": [ 621 | { 622 | "id": 2038377, 623 | "name": "", 624 | "nameEn": "Maxine De Vere", 625 | "image": "http://img31.mtime.cn/ph/377/2038377/2038377_1280X720X2.jpg" 626 | }, 627 | { 628 | "id": 1209821, 629 | "name": "董韵诗", 630 | "nameEn": "Barbie Tung", 631 | "image": "http://img31.mtime.cn/ph/2016/09/05/174813.15229657_1280X720X2.jpg" 632 | } 633 | ] 634 | }, 635 | { 636 | "typeName": "美术设计", 637 | "typeNameEn": "Art Direction by", 638 | "persons": [ 639 | { 640 | "id": 2203560, 641 | "name": "", 642 | "nameEn": "Zhen Wu", 643 | "image": "http://img31.mtime.cn/ph/1560/2203560/2203560_1280X720X2.jpg" 644 | } 645 | ] 646 | }, 647 | { 648 | "typeName": "服装设计", 649 | "typeNameEn": "Costume Design by", 650 | "persons": [ 651 | { 652 | "id": 1265610, 653 | "name": "黄家仪", 654 | "nameEn": "Phoebe Wong", 655 | "image": "http://img31.mtime.cn/ph/1610/1265610/1265610_1280X720X2.jpg" 656 | } 657 | ] 658 | }, 659 | { 660 | "typeName": "视觉特效总监", 661 | "typeNameEn": "Visual Effects Supervisor", 662 | "persons": [ 663 | { 664 | "id": 2239688, 665 | "name": "", 666 | "nameEn": "Khandu Bidkar", 667 | "image": "http://img31.mtime.cn/ph/1688/2239688/2239688_1280X720X2.jpg" 668 | } 669 | ] 670 | }, 671 | { 672 | "typeName": "动作指导", 673 | "typeNameEn": "Choreographer", 674 | "persons": [ 675 | { 676 | "id": 892951, 677 | "name": "唐季礼", 678 | "nameEn": "Stanley Tong", 679 | "image": "http://img31.mtime.cn/ph/2014/02/22/192821.88623670_1280X720X2.jpg" 680 | }, 681 | { 682 | "id": 1865296, 683 | "name": "伍刚", 684 | "nameEn": "Gang Wu", 685 | "image": "http://img5.mtime.cn/ph/2016/11/26/222616.41967971_1280X720X2.jpg" 686 | } 687 | ] 688 | }, 689 | { 690 | "typeName": "副导演/助理导演", 691 | "typeNameEn": "Assistant Director", 692 | "persons": [ 693 | { 694 | "id": 1893463, 695 | "name": "", 696 | "nameEn": "James Cho", 697 | "image": "http://img31.mtime.cn/ph/1463/1893463/1893463_1280X720X2.jpg" 698 | } 699 | ] 700 | }, 701 | { 702 | "typeName": "声音部门", 703 | "typeNameEn": "Sound Department", 704 | "persons": [ 705 | { 706 | "id": 2203561, 707 | "name": "", 708 | "nameEn": "Sindri Þór Kárason", 709 | "image": "http://img31.mtime.cn/ph/1561/2203561/2203561_1280X720X2.jpg" 710 | } 711 | ] 712 | } 713 | ] 714 | } 715 | ``` 716 | 717 | ### 剧照列表 718 | 719 | **url:https://api-m.mtime.cn/Movie/ImageAll.api?movieId=?** 720 | 721 | **示例url:[https://api-m.mtime.cn/Movie/ImageAll.api?movieId=217896](https://api-m.mtime.cn/Movie/ImageAll.api?movieId=217896)** 722 | 723 | **json对象** 724 | 725 | ``` 726 | { 727 | "images": [ 728 | { 729 | "id": 7317312, 730 | "image": "http://img5.mtime.cn/pi/2016/12/25/153213.67270192_1000X1000.jpg", 731 | "type": 1 732 | }, 733 | { 734 | "id": 7323621, 735 | "image": "http://img5.mtime.cn/pi/2017/01/12/113131.12368570_1000X1000.jpg", 736 | "type": 6 737 | }, 738 | { 739 | "id": 7241716, 740 | "image": "http://img31.mtime.cn/pi/2016/06/12/092438.89530314_1000X1000.jpg", 741 | "type": 31 742 | }, 743 | 744 | { 745 | "id": 7315536, 746 | "image": "http://img5.mtime.cn/pi/2016/12/21/112702.53654087_1000X1000.jpg", 747 | "type": 41 748 | } 749 | ], 750 | "imageTypes": [ 751 | { 752 | "type": -1, 753 | "typeName": "显示所有" 754 | }, 755 | { 756 | "type": 6, 757 | "typeName": "剧照" 758 | }, 759 | { 760 | "type": 1, 761 | "typeName": "海报" 762 | }, 763 | { 764 | "type": 41, 765 | "typeName": "工作照" 766 | }, 767 | { 768 | "type": 31, 769 | "typeName": "新闻图片" 770 | } 771 | ] 772 | } 773 | ``` --------------------------------------------------------------------------------