Last active
December 29, 2015 09:49
-
-
Save xiangyuan/7652687 to your computer and use it in GitHub Desktop.
api接口定义
临时使用
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #1、应用推荐访问地址 | |
| # 请求头添加 "Accept":"application/json" | |
| url | |
| http://192.168.22.203/api/recommendApp/[:system] | |
| request: | |
| GET | |
| params | |
| 将:system处替换为 ios | android | |
| eg. curl发起访问 | |
| curl -H "Accept:application/json" http://192.168.22.203/api/recommendApp/ios | |
| 返回数据 | |
| [ | |
| { | |
| "id": 1, | |
| "title": "咖啡声声", | |
| "description": "分錧菜品丰富多样,选材新鲜,分錧菜品丰富多样,选材新鲜", | |
| "logo_uri": "http://192.168.22.203/static/coffee.png", | |
| "download_link": "https://itunes.apple.com/cn/app/dao-xi-la-hun-yan-xi-yan-dang/id686383028?mt=8" | |
| }, | |
| { | |
| "id": 2, | |
| "title": "超萌聊天", | |
| "description": "分錧菜品丰富多样,选材新鲜,分錧菜品丰富多样,选材新鲜", | |
| "logo_uri": "http://192.168.22.203/static/line.png", | |
| "download_link": "https://itunes.apple.com/cn/app/dao-xi-la-hun-yan-xi-yan-dang/id686383028?mt=8" | |
| }, | |
| { | |
| "id": 3, | |
| "title": "反应大考验", | |
| "description": "分錧菜品丰富多样,选材新鲜,分錧菜品丰富多样,选材新鲜", | |
| "logo_uri": "http://192.168.22.203/static/man.png", | |
| "download_link": "https://itunes.apple.com/cn/app/dao-xi-la-hun-yan-xi-yan-dang/id686383028?mt=8" | |
| }, | |
| { | |
| "id": 4, | |
| "title": "反应大考验", | |
| "description": "分錧菜品丰富多样,选材新鲜,分錧菜品丰富多样,选材新鲜", | |
| "logo_uri": "http://192.168.22.203/static/reaction.png", | |
| "download_link": "https://itunes.apple.com/cn/app/dao-xi-la-hun-yan-xi-yan-dang/id686383028?mt=8" | |
| } | |
| ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment