知乎日报APP:API接口分析

柔光的暖阳◎ 2022-07-16 13:49 1163阅读 0赞

一共三篇,每篇都由Markdown编写,故无法用CSDN的Markdown编辑器添加更高一层的目录
第一篇文章《知乎日报API分析》
转自:https://github.com/izzyleung/ZhihuDailyPurify/wiki/%E7%9F%A5%E4%B9%8E%E6%97%A5%E6%8A%A5-API-%E5%88%86%E6%9E%90

声明

以下所有 API 均由 知乎(Zhihu.Inc) 提供,本人(Izzy Leung)采取非正常手段获取。获取与共享之行为或有侵犯知乎权益的嫌疑。若被告知需停止共享与使用,本人会及时删除此页面与整个项目。
请您暸解相关情况,并遵守知乎协议。

API 说明

  • 知乎日报的消息以 JSON 格式输出
  • 网址中 api 后数字代表 API 版本,过高或过低均会得到错误信息
  • 较老的接口(启动界面图像获取,最新消息,过往消息)中将数字 2 替换为 1.2 获得效果相同,替换为 1.1 获得的是老版本 API 输出的 JSON 格式(替换为更低,如 1.0,或更高,如 1.3,将会获得错误消息)
  • 以下所有 API 使用的 HTTP Method 均为 GET

API 分析

1. 启动界面图像获取

  • URL: http://news-at.zhihu.com/api/4/start-image/1080*1776
  • start-image 后为图像分辨率,接受如下格式

    • 320*432
    • 480*728
    • 720*1184
    • 1080*1776
  • 响应实例:

    1. {
    2. text: "© Fido Dido",
    3. img: "http://p2.zhimg.com/10/7b/107bb4894b46d75a892da6fa80ef504a.jpg"
    4. }
  • 分析:

    • text : 供显示的图片版权信息
    • img : 图像的 URL

2. 软件版本查询

  • Android: http://news-at.zhihu.com/api/4/version/android/2.3.0
  • iOS: http://news-at.zhihu.com/api/4/version/ios/2.3.0
  • URL 最后部分的数字代表所安装『知乎日报』的版本
  • 响应实例:

    软件为最新版本时

    1. {
    2. "status": 0,
    3. "latest": "2.2.0"
    4. }

    软件为较老版本时

    1. {
    2. "status": 1,
    3. "msg": "【更新内容】(后略)",
    4. "latest": "2.2.0"
    5. }
  • 分析:

    • status : 0 代表软件为最新版本,1 代表软件需要升级
    • latest : 软件最新版本的版本号(数字的第二段会比最新的版本号低 1)
    • msg : 仅出现在软件需要升级的情形下,提示用户升级软件的对话框中显示的消息

3. 最新消息

  • URL: http://news-at.zhihu.com/api/4/news/latest
  • 响应实例:

    1. {
    2. date: "20140523",
    3. stories: [
    4. {
    5. title: "中国古代家具发展到今天有两个高峰,一个两宋一个明末(多图)",
    6. ga_prefix: "052321",
    7. images: [
    8. "http://p1.zhimg.com/45/b9/45b9f057fc1957ed2c946814342c0f02.jpg"
    9. ],
    10. type: 0,
    11. id: 3930445
    12. },
    13. ...
    14. ],
    15. top_stories: [
    16. {
    17. title: "商场和很多人家里,竹制家具越来越多(多图)",
    18. image: "http://p2.zhimg.com/9a/15/9a1570bb9e5fa53ae9fb9269a56ee019.jpg",
    19. ga_prefix: "052315",
    20. type: 0,
    21. id: 3930883
    22. },
    23. ...
    24. ]
    25. }
  • 分析:

    • date : 日期
    • stories : 当日新闻
  1. * `title` : 新闻标题
  2. * `images` : 图像地址(官方 API 使用数组形式。目前暂未有使用多张图片的情形出现,**曾见无** `images` **属性的情况**,请在使用中注意
  3. * `ga_prefix` : Google Analytics 使用
  4. * `type` : 作用未知
  5. * `id` : `url` `share_url` 中最后的数字(应为内容的 id
  6. * `multipic` : 消息是否包含多张图片(仅出现在包含多图的新闻中)
  7. * `top_stories` : 界面顶部 ViewPager 滚动显示的显示内容(子项格式同上)

4. 消息内容获取与离线下载

  • URL: http://news-at.zhihu.com/api/4/news/3892357
  • 使用在 最新消息 中获得的 id,拼接在 http://news-at.zhihu.com/api/4/news/ 后,得到对应消息 JSON 格式的内容
  • 响应实例:

    1. {
    2. body: "<div class="main-wrap content-wrap">...</div>",
    3. image_source: "Angel Abril Ruiz / CC BY",
    4. title: "卖衣服的新手段:把耐用品变成「不停买新的」",
    5. image: "http://p4.zhimg.com/30/59/30594279d368534c6c2f91b2c00c7806.jpg",
    6. share_url: "http://daily.zhihu.com/story/3892357",
    7. js: [ ],
    8. ga_prefix: "050615",
    9. type: 0,
    10. id: 3892357,
    11. css: [
    12. "http://news.at.zhihu.com/css/news_qa.6.css?v=b390f"
    13. ]
    14. }
  • 分析:

    • body : HTML 格式的新闻
    • image-source : 图片的内容提供方。为了避免被起诉非法使用图片,在显示图片时最好附上其版权信息。
    • title : 新闻标题
    • image : 获得的图片同 最新消息 获得的图片分辨率不同。这里获得的是在文章浏览界面中使用的大图。
    • share_url : 供在线查看内容与分享至 SNS 用的 URL
    • js : 供手机端的 WebView(UIWebView) 使用
    • ga_prefix : 供 Google Analytics 使用
    • type : 新闻的类型
    • id : 新闻的 id
    • css : 供手机端的 WebView(UIWebView) 使用
  1. * 可知,知乎日报的文章浏览界面利用 WebView(UIWebView) 实现
  • 特别注意
    在较为特殊的情况下,知乎日报可能将某个主题日报的站外文章推送至知乎日报首页。
    响应实例:

    1. {
    2. "theme_name": "电影日报",
    3. "title": "五分钟读懂明星的花样昵称:一美、法鲨……",
    4. "share_url": "http://daily.zhihu.com/story/3942319",
    5. "js": [],
    6. "ga_prefix": "052921",
    7. "editor_name": "邹波",
    8. "theme_id": 3,
    9. "type": 1,
    10. "id": 3942319,
    11. "css": [
    12. "http://news.at.zhihu.com/css/news_qa.6.css?v=b390f"
    13. ]
    14. }

    此时返回的 JSON 数据缺少 bodyiamge-sourceimagejs 属性。多出 theme_nameeditor_nametheme_id 三个属性。type0 变为 1

5. 过往消息

  • URL: http://news.at.zhihu.com/api/4/news/before/20131119
  • 若果需要查询 11 月 18 日的消息,before 后的数字应为 20131119
  • 知乎日报的生日为 2013 年 5 月 19 日,若 before 后数字小于 20130520 ,只会接收到空消息
  • 输入的今日之后的日期仍然获得今日内容,但是格式不同于最新消息的 JSON 格式
  • 响应实例:

    1. {
    2. date: "20131118",
    3. stories: [
    4. {
    5. title: "深夜食堂 · 我的张曼妮",
    6. ga_prefix: "111822",
    7. images: [
    8. "http://p4.zhimg.com/7b/c8/7bc8ef5947b069513c51e4b9521b5c82.jpg"
    9. ],
    10. type: 0,
    11. id: 1747159
    12. },
    13. ...
    14. ]
    15. }
  • 格式与前同,恕不再赘述

6. 新闻额外信息

  • URL: http://news-at.zhihu.com/api/4/story-extra/#{id}
  • 输入新闻的ID,获取对应新闻的额外信息,如评论数量,所获的『赞』的数量。
  • 响应实例:

    1. {
    2. "long_comments": 0,
    3. "popularity": 161,
    4. "short_comments": 19,
    5. "comments": 19,
    6. }
  • 分析:

    • long_comments : 长评论总数
    • popularity : 点赞总数
    • short_comments : 短评论总数
    • comments : 评论总数

7. 新闻对应长评论查看

  • URL: http://news-at.zhihu.com/api/4/story/4232852/long-comments
  • 使用在 最新消息 中获得的 id,在 http://news-at.zhihu.com/api/4/story/#{id}/long-comments 中将 id 替换为对应的 id,得到长评论 JSON 格式的内容
  • 响应实例:

    1. {
    2. "comments": [
    3. {
    4. "author": "EleganceWorld",
    5. "id": 545442,
    6. "content": "上海到济南,无尽的猪排盖饭… (后略)",
    7. "likes": 0,
    8. "time": 1413589303,
    9. "avatar": "http://pic2.zhimg.com/1f76e6a25_im.jpg"
    10. },
    11. ...
    12. ]
    13. }
  • 分析:

    • comments : 长评论列表,形式为数组(请注意,其长度可能为 0)
  1. * `author` : 评论作者
  2. * `id` : 评论者的唯一标识符
  3. * `content` : 评论的内容
  4. * `likes` : 评论所获『赞』的数量
  5. * `time` : 评论时间
  6. * `avatar` : 用户头像图片的地址

8. 新闻对应短评论查看

  • URL: http://news-at.zhihu.com/api/4/story/4232852/short-comments
  • 使用在 最新消息 中获得的 id,在 http://news-at.zhihu.com/api/4/story/#{id}/short-comments 中将 id 替换为对应的 id,得到短评论 JSON 格式的内容
  • 响应实例:

    1. {
    2. "comments": [
    3. {
    4. "author": "Xiaole说",
    5. "id": 545721,
    6. "content": "就吃了个花生米,呵呵",
    7. "likes": 0,
    8. "time": 1413600071,
    9. "avatar": "http://pic1.zhimg.com/c41f035ab_im.jpg"
    10. },
    11. ...
    12. ]
    13. }
  • 格式与前同,恕不再赘述

9. 主题日报列表查看

  • URL: http://news-at.zhihu.com/api/4/themes
  • 响应实例:

    1. {
    2. "limit": 1000,
    3. "subscribed": [ ],
    4. "others": [
    5. {
    6. "color": 8307764,
    7. "thumbnail": "http://pic4.zhimg.com/2c38a96e84b5cc8331a901920a87ea71.jpg",
    8. "description": "内容由知乎用户推荐,海纳主题百万,趣味上天入地",
    9. "id": 12,
    10. "name": "用户推荐日报"
    11. },
    12. ...
    13. ]
    14. }
    • 分析:
  1. * `limit` : 返回数目之限制(仅为猜测)
  2. * `subscribed` : 已订阅条目
  3. * `others` : 其他条目
  4. * `color` : 颜色,作用未知
  5. * `thumbnail` : 供显示的图片地址
  6. * `description` : 主题日报的介绍
  7. * `id` : 该主题日报的编号
  8. * `name` : 供显示的主题日报名称

10. 主题日报内容查看

  • URL: http://news-at.zhihu.com/api/4/theme/11
  • 使用在 主题日报列表查看 中获得需要查看的主题日报的 id,拼接在 http://news-at.zhihu.com/api/4/theme/ 后,得到对应主题日报 JSON 格式的内容
  • 响应实例:

    1. {
    2. stories: [
    3. {
    4. images: [
    5. "http://pic1.zhimg.com/84dadf360399e0de406c133153fc4ab8_t.jpg"
    6. ],
    7. type: 0,
    8. id: 4239728,
    9. title: "前苏联监狱纹身百科图鉴"
    10. },
    11. ...
    12. ],
    13. description: "为你发现最有趣的新鲜事,建议在 WiFi 下查看",
    14. background: "http://pic1.zhimg.com/a5128188ed788005ad50840a42079c41.jpg",
    15. color: 8307764,
    16. name: "不许无聊",
    17. image: "http://pic3.zhimg.com/da1fcaf6a02d1223d130d5b106e828b9.jpg",
    18. editors: [
    19. {
    20. url: "http://www.zhihu.com/people/wezeit",
    21. bio: "微在 Wezeit 主编",
    22. id: 70,
    23. avatar: "http://pic4.zhimg.com/068311926_m.jpg",
    24. name: "益康糯米"
    25. },
    26. ...
    27. ],
    28. image_source: ""
    29. }
    • 分析:
  1. * `stories` : 该主题日报中的文章列表
  2. * `images` : 图像地址(其类型为数组。请留意在代码中处理无该属性与数组长度为 0 的情况)
  3. * `type` : 类型,作用未知
  4. * `title` : 消息的标题
  5. * `description` : 该主题日报的介绍
  6. * `background` : 该主题日报的背景图片(大图)
  7. * `color` : 颜色,作用未知
  8. * `name` : 该主题日报的名称
  9. * `image` : 背景图片的小图版本
  10. * `editors` : 该主题日报的编辑(『用户推荐日报』中此项的指是一个空数组,在 App 中的主编栏显示为『许多人』,点击后访问该主题日报的介绍页面,请留意)
  11. * `url` : 主编的知乎用户主页
  12. * `bio` : 主编的个人简介
  13. * `id` : 数据库中的唯一表示符
  14. * `avatar` : 主编的头像
  15. * `name` : 主编的姓名
  16. * `image_source` : 图像的版权信息

11. 热门消息

  • 请注意!此 API 仍可访问,但是其内容未出现在最新的『知乎日报』 App 中。
  • URL: http://news-at.zhihu.com/api/3/news/hot
  • 响应实例:

    1. {
    2. recent: [
    3. {
    4. news_id: 3748552,
    5. url: "http://daily.zhihu.com/api/2/news/3748552",
    6. thumbnail: "http://p3.zhimg.com/67/6a/676a8337efec71a100eea6130482091b.jpg",
    7. title: "长得漂亮能力出众性格单纯的姑娘为什么会没有男朋友?"
    8. },
    9. ...
    10. ]
    11. }
  • 大体同前面介绍的 API 类似,唯一需要注意的是:欲获得图片地址,不再使用 image 而是 thumbnail 属性
  • url 属性可直接使用。请注意,url 中的 api 属性为 2,是较老版本。

12. 软件推广

  • 请注意!此 API 仍可访问,但是其内容未出现在最新的『知乎日报』 App 中。
  • Android: http://news-at.zhihu.com/api/3/promotion/android
  • iOS: http://news-at.zhihu.com/api/3/promotion/ios

13. 栏目总览

  • 请注意!此 API 仍可访问,但是其内容未出现在最新的『知乎日报』 App 中。
  • URL: http://news-at.zhihu.com/api/3/sections
  • 响应实例:

    1. {
    2. data: [
    3. {
    4. id: 1,
    5. thumbnail: "http://p2.zhimg.com/10/b8/10b8193dd6a3404d31b2c50e1e232c87.jpg",
    6. name: "深夜食堂",
    7. description: "睡前宵夜,用别人的故事下酒"
    8. },
    9. ...
    10. ]
    11. }
  • 同样,注意使用 thumbnail 获取图像的地址

14. 栏目具体消息查看

  • 请注意!此 API 仍可访问,但是其内容未出现在最新的『知乎日报』 App 中。
  • URL: http://news-at.zhihu.com/api/3/section/1
  • URL 最后的数字见『栏目总览』中相应栏目的 id 属性
  • 响应实例:

    1. {
    2. news: [
    3. {
    4. date: "20140522",
    5. display_date: "5 月 22 日"
    6. },
    7. ...
    8. ],
    9. name: "深夜食堂",
    10. timestamp: 1398780001
    11. }
  • 往前:http://news-at.zhihu.com/api/3/section/1/before/1398780001

    • 在 URL 最后加上一个时间戳,时间戳详见 JSON 数据末端的 timestamp 属性

第二篇文章《知乎API分析》
转自:https://github.com/hrtsea/zhihu/wiki/%E7%9F%A5%E4%B9%8EAPI%E5%88%86%E6%9E%90

知乎API分析

作为一个WindowsPhone并常刷知乎的用户,我一直期待知乎windowsphone版客户端的发布。可根据经验,WindowsPhone这种小众群体一般很难获得关注,其应用的缺乏简直令人心酸。所谓求人不如求自己,于是我打算分析知乎的API,自己写一个WindowsPhone版的客户端。

我借了我朋友潇湘竹的iphone5,在电脑的fiddler中抓取知乎的数据包(使用fiddler抓取iphone的包的方法在网上可以找的到,这里就不详述了)。

首先是知乎登陆的API,在fiddler中可看出其post的地址是https://oauth.zhihu.com/token,其Request Headers如下(使用c#编写,):

  1. public static HttpAssistant.Header requestHeader = new HttpAssistant.Header();
  2. requestHeader.Method = HttpAssistant.HttpRequestMethods.Post;
  3. requestHeader.AcceptEncoding = "gzip, deflate";
  4. requestHeader.Accept = "application/json";
  5. requestHeader.Connection = "Keep-Alive";
  6. requestHeader.UserAgent = "ZhihuAppIrisRelease/96 (iPhone; iOS 6.1.2; Scale/2.00)";
  7. requestHeader.ContentType = "application/x-www-form-urlencoded; charset=utf-8";
  8. requestHeader.Authorization = authBasic;
  9. requestHeader.XAPIVERSION = "3.0";
  10. requestHeader.XAPPVERSION = "2.1.0";

其返回值为一个json类型的数据:

  1. {"token_type":"bearer","access_token":"fc25004cfe424c83bec4e0189428b345","expires_in":2592000,"refresh_token":"6595ad8bcd9a489a965f2282bf54a04f"}

其post值为:

  1. client_id=4bc899f2695f417eb733f3d21a7be0&client_key=d179a1e11f2347a48c7f928d354621&email=panshichen_joker%40outlook.com&grant_type=password&password=111111

经过删除并重装客户端及换账号登陆等操作,可知以下数据始终不变:

  1. private string clientId = "4bc899f2695f417eb733f3d21a7be0";
  2. private string clientKey = "d179a1e11f2347a48c7f928d354621";
  3. private string authBasic = "Basic NGJjODk5ZjI2OTVmNDE3ZWI3MzNmM2QyMWE3YmUwOmQxNzlhMWUxMWYyMzQ3YTQ4YzdmOTI4ZDM1NDYyMQ==";
  4. private string authBearer = "Bearer ";
  5. 且:
  6. authBearer += accessToken;

按上述数据提交,发现登陆成功!

这着的知乎api就没什么内容了,以下是知乎的各个api,其post地址为:

  1. /// <summary>
  2. /// 登录
  3. /// </summary>
  4. public static string Login { get { return "https://oauth.zhihu.com/token"; } }
  5. /// <summary>
  6. /// 个人资料
  7. /// </summary>
  8. public static string PeopleSelf { get { return "https://api.zhihu.com/people/self"; } }
  9. /// <summary>
  10. /// 未读消息数量
  11. /// </summary>
  12. public static string UnreadCount { get { return "https://api.zhihu.com/unread_count"; } }
  13. /// <summary>
  14. /// 最新动态
  15. /// </summary>
  16. public static string Feeds { get { return "https://api.zhihu.com/feeds"; } }
  17. /// <summary>
  18. /// 热门问答
  19. /// </summary>
  20. public static string ExploreAnswers { get { return "https://api.zhihu.com/explore/answers"; } }
  21. /// <summary>
  22. /// 热门收藏
  23. /// </summary>
  24. public static string ExploreCollections { get { return "https://api.zhihu.com/explore/collections"; } }
  25. /// <summary>
  26. /// 随便看看
  27. /// </summary>
  28. public static string ExploreRandom { get { return "https://api.zhihu.com/explore/random_question"; } }
  29. /// <summary>
  30. /// 消息内容
  31. /// </summary>
  32. public static string NotificationContent { get { return "https://api.zhihu.com/notifications/content"; } }
  33. /// <summary>
  34. /// 与我相关
  35. /// </summary>
  36. public static string NotificationLove { get { return "https://api.zhihu.com/notifications/love"; } }
  37. /// <summary>
  38. /// 私信
  39. /// </summary>
  40. public static string Inbox { get { return "https://api.zhihu.com/inbox"; } }

其提交函数为:

  1. public dynamic feeds()
  2. {
  3. try
  4. {
  5. requestHeader.Method = HttpAssistant.HttpRequestMethods.Get;
  6. requestHeader.Authorization = authBearer;
  7. requestBody.Data = "";
  8. string ret = requestProcess.StringResponse(ZhihuApi.Feeds, requestHeader, requestBody, System.Text.Encoding.UTF8);
  9. return Json.JsonDecode(ret);
  10. }
  11. catch (Exception)
  12. {
  13. return null;
  14. }
  15. }

余者皆同。

第三篇文章《知乎数据API 接口 nodejs》
转自:https://github.com/shanelau/zhihu

知乎数据API 接口 nodejs

======

根据这些接口获取到知乎的数据,包括用户、问答、专栏、话题信息

欢迎贡献代码,一起完善知乎的接口

快速开始

  1. var zhihu = require('zhihu');

demo

获取用户的信息

  1. var username = 'shanelau1021';
  2. zhihu.User.getUserByName(name).then(function(user){ console.log(user); });

用户 API

User.getUserByName(username)

根据用户名获取到用户的信息,用户名为用的唯一标识,参见个人主页的url,或者设置中的个性网站

  • username //用户位置标识

Example
请求这个用户:http://www.zhihu.com/people/shanelau1021
nameshanelau1021

  1. var nam = 'shanelau1021';
  2. zhihu.User.getUserByName(name).then(function(user){ console.log(user); });

Result

参数说明

  • answer答题数量
  • post 文章数量
  • follower 跟随者数量
  • profileUrl 个人主页
  • name 名字
  • sex性别

    { answer: 5, post: 0, follower: 456, profileUrl: ‘http://www.zhihu.com/people/shanelau1021‘, name: ‘狂飙蜗牛’, sex: ‘male’ }

专栏文章–Post

Post.info(postUrl)

获取专栏文章的详细信息

  • postUrl 文章的url地址

Example

  1. zhihu.Post.info(postUrl).then(function(data){
  2. //do something
  3. })

\ Result **

  • Object

example

Post.page(name,options)

获取专栏文章列表

  • name 专栏的英文名字, 例如:’bigertech’
  • options {object} ,默认值为10

    1. { limit: 10 //记录数 offset: 10 // 偏移量 }

Example

demo

Post.likersDetail(postUrl)

获取文章的点赞者的详细信息

  • postUrl 文章的url地址

Result

用户数组

  • {Array} //User

Post.zhuanlanInfo(name)

获取专栏的信息

  • name 专栏的名字,比如 bigertech

Result

  1. { followersCount: 22614,
  2. description: '',
  3. creator:
  4. { bio: '魅族营销中心招募设计师',
  5. hash: '29c3654588fd4246bb90cbd345242d65',
  6. description: '',
  7. profileUrl: 'http://www.zhihu.com/people/linan',
  8. avatar:
  9. { id: '24f3a654b',
  10. template: 'http://pic2.zhimg.com/{id}_{size}.jpg' },
  11. slug: 'linan',
  12. name: '李楠' },
  13. topics: [],
  14. href: '/api/columns/bigertech',
  15. acceptSubmission: true,
  16. slug: 'bigertech',
  17. name: '笔戈科技',
  18. url: '/bigertech',
  19. avatar:
  20. { id: 'a4bf61d95',
  21. template: 'http://pic3.zhimg.com/{id}_{size}.jpg' },
  22. commentPermission: 'anyone',
  23. following: false,
  24. postsCount: 173,
  25. canPost: false,
  26. activateAuthorRequested: false }
  • {Array} //User

答案 Answer

likers

获取答案的点赞者
@TODO

问题API–Question

focus

问题的关注列表
@TODO

collection

问题的收藏列表

info

问题的详细信息
@TODO

questions

用户的提问列表
@TODO

answers

用户的回答列表
@TODO

zhuanlansFocus

用户关注的专栏
@TODO

topic

用户关注的话题信息
@TODO

话题API - Topic

Topic.getTopicByID(topicID[, page])

根据话题id获取该话题下的问题,话题id为唯一标识,参见话题的url
- topicID 话题的ID

Example

请求这个话题:生活、艺术、文化与活动
topicID19791501

  1. var topicID = '19791501';
  2. zhihu.Topic.getTopicByID(topicID).then(function(result){
  3. console.log(result);
  4. });

Result

参数说明

  • name 话题名称
  • page 当前页数
  • totalPage 该话题下问题总页数
  • questions 当页问题
  1. * `title` 问题名字
  2. * `url` 问题链接
  3. * `postTime` 问题最近更新时间
  4. { name: '生活、艺术、文化与活动',
  5. page: 1,
  6. totalPage: 47242,
  7. questions:
  8. { '0':
  9. { title: '为什么很多人能接受有过长期恋爱经历,却不能接受有过婚姻的人?',
  10. url: 'http://www.zhihu.com/question/27816723',
  11. postTime: '41 秒前' },
  12. '1':
  13. { title: '嘴巴张合脸颊会发出咯的声音?为什么?',
  14. url: 'http://www.zhihu.com/question/27816716',
  15. postTime: '1 分钟前' },
  16. '2':
  17. { title: '如何有效率的学好粤语呢?',
  18. url: 'http://www.zhihu.com/question/27816709',
  19. postTime: '1 分钟前' },
  20. '3':
  21. { title: 'pc ssh连接到服务器每隔几十分钟掉线一次是什么问题?',
  22. url: 'http://www.zhihu.com/question/27816701',
  23. postTime: '1 分钟前' },
  24. '4':
  25. { title: '找对象该不该看长相?',
  26. url: 'http://www.zhihu.com/question/27816694',
  27. postTime: '2 分钟前' },
  28. '5':
  29. { title: '为什么很少有关于大阪的推荐?',
  30. url: 'http://www.zhihu.com/question/27816691',
  31. postTime: '2 分钟前' },
  32. '6':
  33. { title: '遇到偷东西朋友怎么办?',
  34. url: 'http://www.zhihu.com/question/27816684',
  35. postTime: '2 分钟前' },
  36. '7':
  37. { title: '自古以来,皇帝、权贵从小接受的是什么教育?东方与西方有哪些不同?',
  38. url: 'http://www.zhihu.com/question/27816683',
  39. postTime: '2 分钟前' },
  40. '8':
  41. { title: '还有什么小说像《东莞的森林》这样文艺的?',
  42. url: 'http://www.zhihu.com/question/27816680',
  43. postTime: '2 分钟前' },
  44. '9':
  45. { title: '韩国法律里,《匹诺曹》中哥哥应该会判什么刑?',
  46. url: 'http://www.zhihu.com/question/27816676',
  47. postTime: '3 分钟前' },
  48. '10':
  49. { title: '哪位作家出车祸丧失睡眠功能了?',
  50. url: 'http://www.zhihu.com/question/27816674',
  51. postTime: '3 分钟前' },
  52. '11':
  53. { title: '文字狱与同治中兴的关系?',
  54. url: 'http://www.zhihu.com/question/27816663',
  55. postTime: '3 分钟前' },
  56. '12':
  57. { title: '为什么到了年关有关婚姻的问题就多了起来呢?',
  58. url: 'http://www.zhihu.com/question/27816660',
  59. postTime: '3 分钟前' },
  60. '13':
  61. { title: 'Windows Holographic这样的全息产品是否会扼杀儿童的想象力?',
  62. url: 'http://www.zhihu.com/question/27816653',
  63. postTime: '4 分钟前' },
  64. '14':
  65. { title: '如何评价纳兰明珠?',
  66. url: 'http://www.zhihu.com/question/27816651',
  67. postTime: '4 分钟前' },
  68. '15':
  69. { title: '如何拍出有「领导人出游」感觉的照片?',
  70. url: 'http://www.zhihu.com/question/27816646',
  71. postTime: '4 分钟前' },
  72. '16':
  73. { title: '读大学本科第二年参加学校对外的交流项目到国外学习几个月,这样获得的证书是能认证的吗?',
  74. url: 'http://www.zhihu.com/question/27816645',
  75. postTime: '4 分钟前' },
  76. '17':
  77. { title: '什么情况下应该穿囚服?什么情况可以不穿?识别服和囚服一样么?有什么区别?希望有个详细解答!?',
  78. url: 'http://www.zhihu.com/question/27816641',
  79. postTime: '5 分钟前' },
  80. '18':
  81. { title: '何谓荷花厅?',
  82. url: 'http://www.zhihu.com/question/27816635',
  83. postTime: '5 分钟前' },
  84. '19':
  85. { title: '360卫士在C盘为什么不可以删掉?',
  86. url: 'http://www.zhihu.com/question/27816632',
  87. postTime: '5 分钟前' } } }

发表评论

表情:
评论列表 (有 0 条评论,1163人围观)

还没有评论,来说两句吧...

相关阅读