Changes between Version 28 and Version 29 of pcauto_drive_2.2.0/interface
- Timestamp:
- 09/24/2015 12:16:40 PM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
pcauto_drive_2.2.0/interface
v28 v29 13 13 14 14 === 1.1我的 === 15 '''(获取用户学分接口)'''[[BR]] 16 >mrobot地址: [[BR]] 15 '''(接口已完成,请连开发机测试)'''[[BR]] 16 >mrobot地址:http://mrobot.pcauto.com.cn/xsp/s/auto/info/xueChe/myScore.xsp [[BR]] 17 学车后台开发环境:http://dev38.pcauto.com.cn:8085/driver/appapi/1.0/getUserScore.do [[BR]] 18 学车后台线上环境:http://task.pcauto.com.cn/driver/appapi/1.0/getUserScore.do [[BR]] 17 19 18 20 **说明** … … 34 36 **数据来源** 35 37 36 > 38 > 学车后台 37 39 38 40 **参数** … … 40 42 ||= 参数名 =||= 参数含义 =||= 类型 =||= 默认值 =||= 是否必须 =||=说明=|| 41 43 ||= Cookie =||= 用户登录cookie =|| string ||= =||= 是 =||= 登录用户cookie,放在请求头中 =|| 42 ||= =||= 用户id =|| string ||= =||= 是 =||= 用户id =||44 ||= userId =||= 用户id =|| string ||= =||= 是 =||= 用户id =|| 43 45 44 46 **返回** … … 48 50 "status": 0, 49 51 "message": "成功", 52 "version":"版本号", 53 "userId": "用户id", 50 54 "score":4000 51 55 } … … 55 59 ||= 参数名 =||= 参数含义 =||=参数名=||=参数含意=|| 56 60 ||= status =||= 接口返回状态码:0成功,非0异常 =||= message =||=接口返回描述信息=|| 57 ||= score =||= 用户学分 =||= =||==|| 61 ||= score =||= 用户学分 =||= userId =||= 用户id =|| 62 ||= version =||= 版本号 =||= =||= =|| 58 63 59 64 ---------- … … 61 66 === 1.2学分任务列表 === 62 67 63 >mrobot地址: [[BR]]64 学车后台开发环境: [[BR]]65 学车后台线上环境: [[BR]]68 >mrobot地址:http://mrobot.pcauto.com.cn/xsp/s/auto/info/xueChe/TaskList.xsp [[BR]] 69 学车后台开发环境:http://dev38.pcauto.com.cn:8085/driver/appapi/1.0/getTaskList.do [[BR]] 70 学车后台线上环境:http://task.pcauto.com.cn/driver/appapi/1.0/getTaskList.do [[BR]] 66 71 67 72 **说明** … … 89 94 ||= 参数名 =||= 参数含义 =||= 类型 =||= 默认值 =||= 是否必须 =||= 说明 =|| 90 95 ||= Cookie =||= 用户登录cookie =|| string ||= =||= 是 =||= 登录用户cookie,放在请求头中 =|| 91 ||= =||= 用户id =|| string ||= =||= 否 =||= 用户id =||96 ||= userId =||= 用户id =|| string ||= =||= 否 =||= 用户id =|| 92 97 93 98 **返回** … … 107 112 "taskName": "分享APP给朋友", 108 113 "taskDesc": "被评为精华帖可每次可获得20学分,获取机会无限次。", 109 "taskScore": 10 114 "taskScore": 10, 115 "taskLimit":5, 116 "taskApplogo":"图标", 117 "done":"任务是否已完成", 118 "current":"任务当前完成次数" 110 119 }, 111 120 ] … … 114 123 **返回参数说明** 115 124 ||= 参数名 =||= 参数含义 =||=参数名=||=参数含义=|| 116 ||= status =||= 接口返回状态码:0成功,非0异常 =||= message =||=接口返回描述信息=|| 117 ||= score =||= 登录用户学分,未登录返回“” =||= tips =||=未登录状态下的提示信息,已登录返回“”=|| 118 ||= taskId =||= 任务id =||= taskType =||=登录下返回各任务状态:0未完成,1已完成,2可多次完成的任务;未登录该字段返回“”=|| 119 ||= taskTimes =||= 已完成的任务次数,针对可多次完成的任务 =||= taskImage =||=任务缩略图=|| 120 ||= taskName =||= 任务名称 =||= taskDesc =||=任务描述=|| 121 ||= taskScore =||= 完成任务可获得的学分 =|| 125 ||= status =||= 接口返回状态码:0成功,非0异常 =||= message =||= 接口返回描述信息 =|| 126 ||= score =||= 登录用户学分,未登录返回“” =||= tips =||= 未登录状态下的提示信息,已登录返回“” =|| 127 ||= taskId =||= 任务id =||= taskType =||= 登录下返回各任务状态:0未完成,1已完成,2可多次完成的任务;未登录该字段返回“” =|| 128 ||= taskTimes =||= 已完成的任务次数,针对可多次完成的任务 =||= taskImage =||= 任务缩略图 =|| 129 ||= taskName =||= 任务名称 =||= taskDesc =||= 任务描述 =|| 130 ||= taskScore =||= 完成任务可获得的学分 =||= taskLimit =||= 完成任务需要次数 =|| 131 ||= taskApplogo =||= 图标 =||= done =||= 任务是否已完成 =|| 132 ||= current =||= 任务当前完成次数 =||= =||= =|| 122 133 123 134 ---------- 124 135 125 136 ==== 1.2.1 判断用户模拟考试的任务完成情况 ==== 126 >mrobot地址: [[BR]]127 学车后台开发环境: [[BR]]128 学车后台线上环境: [[BR]]137 >mrobot地址:http://mrobot.pcauto.com.cn/xsp/s/auto/info/xueChe/examTaskStatus.xsp [[BR]] 138 学车后台开发环境:http://dev38.pcauto.com.cn:8085/driver/appapi/1.0/getExamTaskStatus.do [[BR]] 139 学车后台线上环境:http://task.pcauto.com.cn/driver/appapi/1.0/getExamTaskStatus.do [[BR]] 129 140 130 141 **说明** … … 152 163 ||= 参数名 =||= 参数含义 =||= 类型 =||= 默认值 =||= 是否必须 =||= 说明 =|| 153 164 ||= Cookie =||= 用户登录cookie =|| string ||= =||= 是 =||= 登录用户cookie,放在请求头中 =|| 154 ||= =||= 用户id =|| string ||= =||= 是 =||= 用户id =|| 155 156 **返回** 157 158 {{{#!java 159 { 160 "status": 0, 161 "message": "操作成功", 162 "passingTime": 1, 163 "allPass": true 165 ||= userId =||= 用户id =|| string ||= =||= 是 =||= 用户id =|| 166 167 **返回** 168 169 {{{#!java 170 { 171 "status": "0成功,非0情况为失败或错误" 172 "message":"失败原因" 173 "version":"版本号" 174 175 "taskId":"任务id" 176 "passingTime":"及格次数" 177 "allPass": "是否已得过满分" 164 178 } 165 179 }}} … … 168 182 ||= status =||= 接口返回状态码:0成功,非0异常 =||= message =||= 接口返回描述信息 =|| 169 183 ||= passingTime =||= 已经及格过的次数 =||= allPass =||= 是否已得过满分 =|| 184 ||= taskId =||= 任务id =||= =||= =|| 170 185 171 186 ---------- 172 187 173 188 ==== 1.2.2 判断用户是否已首次分享 ==== 174 >mrobot地址: [[BR]]175 学车后台开发环境: [[BR]]176 学车后台线上环境: [[BR]]189 >mrobot地址:http://mrobot.pcauto.com.cn/xsp/s/auto/info/xueChe/SharedAppTaskStatus.xsp [[BR]] 190 学车后台开发环境:http://dev38.pcauto.com.cn:8085/driver/appapi/1.0/getSharedAppTaskStatus.do [[BR]] 191 学车后台线上环境:http://task.pcauto.com.cn/driver/appapi/1.0/getSharedAppTaskStatus.do [[BR]] 177 192 178 193 **说明** … … 200 215 ||= 参数名 =||= 参数含义 =||= 类型 =||= 默认值 =||= 是否必须 =||= 说明 =|| 201 216 ||= Cookie =||= 用户登录cookie =|| string ||= =||= 是 =||= 登录用户cookie,放在请求头中 =|| 202 ||= =||= 用户id =|| string ||= =||= 是 =||= 用户id =|| 203 204 **返回** 205 206 {{{#!java 207 { 208 "status": 0, 209 "message": "操作成功", 210 "haveShare": true 217 ||= userId =||= 用户id =|| string ||= =||= 是 =||= 用户id =|| 218 219 **返回** 220 221 {{{#!java 222 { 223 "status": "0成功,非0情况为失败或错误" 224 "message:"失败原因" 225 "version":"版本号" 226 227 "taskId":"任务id" 228 "haveShare":"是否已分享" 211 229 } 212 230 }}} … … 214 232 ||= 参数名 =||= 参数含义 =||=参数名=||=参数含义=|| 215 233 ||= status =||= 接口返回状态码:0成功,非0异常 =||= message =||= 接口返回描述信息 =|| 216 ||= haveShare =||= 是否已首次分享过 =||= =||==||234 ||= haveShare =||= 是否已首次分享过 =||= taskId =||= 任务id =|| 217 235 218 236 ---------- … … 294 312 ||= 参数名 =||= 参数含义 =||= 类型 =||= 默认值 =||= 是否必须 =||= 说明 =|| 295 313 ||= score =||= 用户学分 =|| string ||= =||= 否 =||= 用户学分,未登录不传 =|| 296 ||= =||= 用户id =|| string ||= =||= 是 =||= 用户id =||314 ||= userId =||= 用户id =|| string ||= =||= 是 =||= 用户id =|| 297 315 298 316 **返回** … … 358 376 ==== 1.4.1我的奖品 ==== 359 377 360 >mrobot地址: [[BR]]378 >mrobot地址:http://mrobot.pcauto.com.cn/xsp/s/auto/info/xueChe/myPrize.xsp [[BR]] 361 379 学车后台开发环境: [[BR]] 362 380 学车后台线上环境: [[BR]] … … 407 425 === 2.1科目首页问答接口 === 408 426 409 >mrobot地址: [[BR]] 410 学车后台开发环境: [[BR]] 411 学车后台线上环境: [[BR]] 427 >mrobot地址:http://mrobot.pcauto.com.cn/xsp/s/auto/info/xueChe/randomQuestion.xsp [[BR]] 428 cms线上环境:http://www.pcauto.com.cn/client/xcbd/1507/intf7331.js [[BR]] 412 429 413 430 **说明** … … 463 480 === 2.2科目首页今日推荐接口 === 464 481 465 >mrobot地址: [[BR]] 466 学车后台开发环境: [[BR]] 467 学车后台线上环境: [[BR]] 482 >mrobot地址:http://mrobot.pcauto.com.cn/xsp/s/auto/info/xueChe/topArticle.xsp [[BR]] 483 cms线上环境:http://www.pcauto.com.cn/client/xcbd/1509/intf7851.js [[BR]] 468 484 469 485 **说明** … … 518 534 === 2.3 考场实拍,考场列表 === 519 535 520 >mrobot地址: [[BR]]521 学车后台开发环境:http:// rdtrac.pc.com.cn/xueche/wiki/appapi/2.2#a2.2.根据城市ID获取考场2.2[[BR]]522 学车后台线上环境: [[BR]]523 524 **说明** 525 526 > 考场实拍,考场列表。V2.2科目三考场只出广州的数据,请求参数cityId=440100),按首字的首字母顺序排序536 >mrobot地址:http://mrobot.pcauto.com.cn/xsp/x/xueche.pcauto.com.cn/appapi/1.0/examArea/listExamAreaByCity.do?cityId=440100 [[BR]] 537 学车后台开发环境:http://dev38.pcauto.com.cn:8003/appapi/1.0/examArea/listExamAreaByCity.do?cityId=440100 [[BR]] 538 学车后台线上环境:http://xueche.pcauto.com.cn/appapi/1.0/examArea/listExamAreaByCity.do?cityId=440100 [[BR]] 539 540 **说明** 541 542 > 获取某个城市下的考场列表 527 543 528 544 **缓存时间** … … 545 561 546 562 ||= 参数名 =||= 参数含义 =||= 类型 =||= 默认值 =||= 是否必须 =||= 说明 =|| 547 ||= cityId =||= 城市id =|| int ||= =||= 否 =||= V2.2科目三考场只出广州的数据,城市id cityId=440100 =|| 548 ||= subjectId =||= 科目id =|| int ||= =||= 是 =||= 考场是科目二(subjectId=2),路拍是科目三(subjectId=3) =|| 549 550 **返回** 551 552 {{{#!java 553 { 554 "status": 0, 555 "message": "操作成功", 556 "datas": [ 563 ||= cityId =||= 城市id =||= int =||= 无 =||= 是 =||= =|| 564 565 **返回** 566 567 {{{#!java 568 { 569 "code": 0, 570 "data": [ 557 571 { 558 572 "cityId": 440100, … … 560 574 "name": "秀全驾校", 561 575 "provinceId": 440000, 562 "content": "路段的简介文案,字数不超过3行,超过三行在第三行末尾省略号结束",563 576 "shrinkTagram": [ 564 577 { … … 567 580 ] 568 581 }, 569 ] 570 } 571 }}} 572 **返回参数说明** 573 ||= 参数名 =||= 参数含义 =||=参数名=||=参数含义=|| 574 ||= status =||= 接口返回状态码:0成功,非0异常 =||= message =||=接口返回描述信息=|| 575 ||= id =||= 考场id =||= cityId =||= 城市id =|| 576 ||= name =||= 考场名 =||= provinceId =||= 省份id =|| 577 ||= content =||= 考场简介 =||= url =||= 缩略图 =|| 582 { 583 "cityId": 440100, 584 "id": 161, 585 "name": "2222", 586 "provinceId": 440000 587 }, 588 { 589 "cityId": 440100, 590 "id": 241, 591 "name": "测试考场一", 592 "provinceId": 440000, 593 "shrinkTagram": [ 594 { 595 "url": "http://img.pcauto.com.cn/images/upload/upc/tx/driver/1508/12/c0/11047652_1439347981183.jpg" 596 }, 597 { 598 "url": "http://img.pcauto.com.cn/images/upload/upc/tx/driver/1508/12/c0/11047636_1439347990058.jpg" 599 } 600 ] 601 } 602 ], 603 "message": "操作成功", 604 "version": "v1.0(latest)" 605 } 606 }}} 607 **返回参数说明** 608 ||= 参数名 =||= 参数含义 =||=参数名=||=参数含意=|| 609 ||= cityId =||= 城市id =||=id=||=考场id=|| 610 ||= name =||= 考场名称 =||=provinceId=||=省份id=|| 611 ||= shrinkTagram =||= 图片 =||==||==|| 578 612 579 613 ---------- … … 581 615 === 2.4 考场详情页(web页) === 582 616 583 >mrobot地址: [[BR]]584 学车后台开发环境:http:// rdtrac.pc.com.cn/xueche/wiki/appapi/2.2#a2.3.根据考场ID获取考场详情2.1[[BR]]585 学车后台线上环境: [[BR]]586 587 **说明** 588 589 > 参照V2.1考场详情接口http://trac.pc.com.cn/iphone/wiki/pcauto_drive_2.1.0/interface#a2.3考场详情页web页617 >mrobot地址:http://mrobot.pcauto.com.cn/xsp/s/auto/info/xueChe/examAreaDetail.xsp?id=241&resVer=21000&platform=iphone&isShare=1 [[BR]] 618 学车后台开发环境:http://dev38.pcauto.com.cn:8003/appapi/1.0/examArea/getExamAreaById.do?id= [[BR]] 619 学车后台线上环境: http://xueche.pcauto.com.cn/appapi/1.0/examArea/getExamAreaById.do?id= [[BR]] 620 621 **说明** 622 623 > 获取学车后台录入的考场详情。 590 624 591 625 **缓存时间** … … 605 639 >学车后台 606 640 607 **参数** 608 609 ||= 参数名 =||= 参数含义 =||= 类型 =||= 默认值 =||= 是否必须 =||= 说明 =|| 641 **资源包存放路径** 642 > http://dev40.pcauto.com.cn:8002/configs.jsp [[BR]] 643 > http://dev40.pcauto.com.cn/configs/pcauto_iphone_xueche_examAreaDetail.json [[BR]] 644 > http://dev40.pcauto.com.cn/configs/pcauto_android_xueche_examAreaDetail.json [[BR]] 645 646 **参数** 647 648 ||= 参数名 =||= 参数含义 =||= 类型 =||= 默认值 =||= 是否必须 =||= 说明 =|| 649 ||= id =||= 考场id =||= int =||= =||= 是 =||= =|| 650 ||= platform =||=设备类型 =||= string =||= =||= 是 =||= iphone,android =|| 651 ||= resVer =||=资源包版本 =||= string =||= =||= 是 =||= 版本号由app同事定 =|| 652 ||= isShare =||= 是否分享 =||= int =||= =||= 是 =||= 1:出分享页;0:出详情页 =|| 610 653 611 654 **返回** … … 613 656 返回HTML页面 614 657 615 **返回参数说明** 616 ||= 参数名 =||= 参数含义 =||=参数名=||=参数含义=|| 617 658 注释: 659 /*@_HTML_META_START_ 660 {"resVer":"21001","shareUrl":"http://mrobot.pcauto.com.cn/xsp/s/auto/info/xueChe/examAreaDetail.xsp? id=241&resVer=21000&platform=iphone&isShare=1","firstImg":"http://img.pcauto.com.cn/images/upload/upc/tx/driver/1508/12/c0/11047637_1439348002343_600x450.jpg"} 661 _HTML_META_END_@*/ 662 663 **返回参数说明** 664 ||= 参数名 =||= 参数含义 =||=参数名=||=参数含意=|| 665 ||= resVer =||= 资源包版本号 =||=shareUrl =||=分享url=|| 666 ||= firstImg =||= 第一张图片 =||==||==|| 667 668 **协议** 669 > 图片跳转: pcdrive://big-photo?url= [[BR]] 618 670 ---------- 619 671 620 672 === 2.5基础知识 === 621 673 622 >mrobot地址: http://trac.pc.com.cn/iphone/wiki/pcauto_drive_2.1.0/interface#a3.1基础知识主页[[BR]]623 学车后台开发环境:[[BR]]624 学车后台线上环境:[[BR]]625 626 **说明** 627 628 > 沿用V2.1的接口,增加一个subjectId请求参数629 630 **缓存时间** 631 632 > 0674 >mrobot地址:http://mrobot.pcauto.com.cn/xsp/s/auto/info/xueChe/basicKnowledge.xsp?id=6483971 [[BR]] 675 cms开发环境:http://test1.pcauto.com.cn:8002/interface/pcauto/mrobot_articles_v5.jsp?id=6483971 [[BR]] 676 cms线上环境:http://192.168.10.74:8003/interface/pcauto/mrobot_articles_v5.jsp?id=6483971 [[BR]] 677 678 **说明** 679 680 > 获取基础知识主页 681 682 **缓存时间** 683 684 >分钟 633 685 634 686 **提交方式** … … 642 694 **数据来源** 643 695 644 >CMS 645 646 **参数** 647 648 ||= 参数名 =||= 参数含义 =||= 类型 =||= 默认值 =||= 是否必须 =||= 说明 =|| 649 650 **返回** 651 652 **返回参数说明** 653 ||= 参数名 =||= 参数含义 =||=参数名=||=参数含义=|| 696 >cms 697 698 **参数** 699 700 ||= 参数名 =||= 参数含义 =||= 类型 =||= 默认值 =||= 是否必须 =|| 701 ||= id =||= 文章id =||= int=||= =||= 是 =|| 702 703 **返回** 704 705 {{{#!java 706 { 707 "author": "moyingchao", 708 "id": "6483971", 709 "image": "", 710 "image2": "", 711 "pageNum": 7, 712 "preView": "各位都知道,科目二是需要上车实操的,到了考试时,考员有必要提前调节好车内的东西,", 713 "pubDate": 1439369785713, 714 "tagWords": [], 715 "tags": [ 716 { 717 "pageNo": 2, 718 "picText": [ 719 { 720 "pic": "http://img0.pcauto.com.cn/pcauto/1508/10/6866928_14_thumb.jpg", 721 "text": "● 车门开关 将后视镜调整到自己日常练车的位置,以便自己找到熟悉的感觉。 啊岁的老将阿隆索大家啊三季度刻录机啊斯达康洛吉拉斯简单快乐" 722 } 723 ], 724 "tagName": "车门开关" 725 } 726 ], 727 "title": "科目二基础操作测试用", 728 "url": "http://www.pcauto.com.cn/techtest/648/6483971.html", 729 "wapUrl": "http://m.pcauto.com.cn/x/648/6483971.html" 730 731 } 732 733 }}} 734 735 **返回参数说明** 736 ||= 参数名 =||= 参数含义 =||=参数名=||=参数含意=|| 737 ||= author =||= 作者 =||=id=||=文章id=|| 738 ||= pageNum =||= 页数 =||=image=||=图片=|| 739 ||= preView =||= 概述 =||=pubDate=||=发布日期=|| 740 ||= pageNo =||= 页码 =||=pic=||=文章图=|| 741 ||= text =||= 文章内容 =||=tagName=||=标签=|| 742 ||= title =||= 标题 =||=url=||=pc端链接=|| 743 ||= wapUrl =||= wap链接 =||==||==|| 744 654 745 655 746 ---------- … … 657 748 === 2.6 夜考、完整版 === 658 749 659 >mrobot地址: http://trac.pc.com.cn/iphone/wiki/pcauto_drive_2.1.0/interface#a4.3五大必过版[[BR]]660 学车后台开发环境:[[BR]]661 学车后台线上环境:[[BR]]662 663 **说明** 664 665 > 沿用V2.1科目二必过版的文章模板,文章ID后续由编辑给到。666 667 **缓存时间** 668 669 > 0750 >mrobot地址:http://mrobot.pcauto.com.cn/xsp/s/auto/info/xueChe/articles.xsp?id=6483971&resVer=21000&platform=iphone&type=1 [[BR]] 751 cms开发环境:http://test1.pcauto.com.cn:8002/interface/pcauto/mrobot_articles_v3.jsp?id=6483971 [[BR]] 752 cms线上环境:http://192.168.10.74:8003/interface/pcauto/mrobot_articles_v3.jsp?id=6483971 [[BR]] 753 754 **说明** 755 756 > 获取cms录入的考试文章[[BR]] 757 758 **缓存时间** 759 760 >分钟 670 761 671 762 **提交方式** … … 679 770 **数据来源** 680 771 681 >CMS 682 683 **参数** 684 685 ||= 参数名 =||= 参数含义 =||= 类型 =||= 默认值 =||= 是否必须 =||= 说明 =|| 686 687 **返回** 688 689 **返回参数说明** 690 ||= 参数名 =||= 参数含义 =||=参数名=||=参数含义=|| 772 > cms 773 774 **资源包存放路径** 775 > http://dev40.pcauto.com.cn:8002/configs.jsp [[BR]] 776 > http://dev40.pcauto.com.cn/configs/pcauto_iphone_xueche_articles.json [[BR]] 777 > http://dev40.pcauto.com.cn/configs/pcauto_android_xueche_articles.json [[BR]] 778 779 **参数** 780 781 ||= 参数名 =||= 参数含义 =||= 类型 =||= 默认值 =||= 是否必须 =||=说明=|| 782 ||= pageNo =||= 页数 =||int||= 1 =||= 否 =||= =|| 783 ||= allText =||= 是否出全文 =||int||= 0 =||= 否 =||= 为1时返回全文内容 =|| 784 ||= id =||=文章ID =||= string =||= =||= 是 =||= 应用端需要 =|| 785 ||= platform =||=设备类型 =||= string =||= =||= 是 =||= iphone,android =|| 786 ||= resVer =||=资源包版本 =||= string =||= =||= 是 =||= 版本号由app同事配置 =|| 787 ||= type =||=页面类型 =||= string =||= =||= 是 =||= 1:文章终端页,2:倒车入库,3:必过版(除倒车入库) =|| 788 ||= isTarget =||= 跳转难点攻克 =||int||= =||= 否 =||= 为1时跳转到难点攻克 =|| 789 **返回** 790 791 返回HTML页面 792 793 注释: 794 /*@_HTML_META_START_ 795 {"resVer":"21001","shareUrl":"","firstImg":"http://img0.pcauto.com.cn/pcauto/1508/06/6502326_4_thumb.jpg"} 796 _HTML_META_END_@*/ 797 798 **返回参数说明** 799 ||= 参数名 =||= 参数含义 =||=参数名=||=参数含意=|| 800 ||= resVer =||= 资源包版本号 =||=shareUrl =||=分享url=|| 801 ||= firstImg =||= 第一张图片 =||==||==|| 802 803 **协议** 804 > 图片跳转: pcdrive://big-photo?url= [[BR]] 805 > 小游戏: pcdrive://game 806 691 807 692 808 ---------- … … 697 813 === 3.1 注册设备号 === 698 814 >mrobot地址: [[BR]] 699 学车后台开发环境: [[BR]]700 学车后台线上环境: [[BR]]815 学车后台开发环境:http://dev38.pcauto.com.cn:8003/appapi/1.0/invite/registerDevice.do [[BR]] 816 学车后台线上环境:http://xueche.pcauto.com.cn/appapi/1.0/invite/registerDevice.do [[BR]] 701 817 702 818 **说明** … … 796 912 === 3.3 填写邀请码 === 797 913 >mrobot地址: [[BR]] 798 学车后台开发环境: [[BR]]799 学车后台线上环境: [[BR]]914 学车后台开发环境:http://dev38.pcauto.com.cn:8003/1.0/invite/inviteUser.do [[BR]] 915 学车后台线上环境:http://xueche.pcauto.com.cn/1.0/invite/inviteUser.do [[BR]] 800 916 801 917 **说明** … … 823 939 ||= 参数名 =||= 参数含义 =||= 类型 =||= 默认值 =||= 是否必须 =||= 说明 =|| 824 940 ||= Cookie =||= 用户登录cookie =|| string ||= =||= 是 =||= 登录用户cookie,放在请求头中 =|| 825 ||= abc=||= 设备id =|| string ||= =||= 是 =||= 设备id =||826 ||= def=||= 邀请码 =|| string ||= =||= 是 =||= 邀请码 =||941 ||= deviceCode =||= 设备id =|| string ||= =||= 是 =||= 设备id =|| 942 ||= inviteId =||= 邀请码 =|| string ||= =||= 是 =||= 邀请码 =|| 827 943 ||= agent =||= 来自平台 =|| int ||= =||= 是 =||= 来自平台:2iOS,3安卓 =|| 828 ||= =||= 用户id =|| string ||= =||= 是 =||= 用户id =||944 ||= accountId =||= 用户id =|| string ||= =||= 是 =||= 用户id =|| 829 945 830 946 **返回**
![(please configure the [header_logo] section in trac.ini)](http://www1.pconline.com.cn/hr/2009/global/images/logo.gif)