mindpin / problem-issues

问题驱动研发的BUG和改进建议反馈!
0 stars 0 forks source link

TAG 数据服务 API 增补需求 #6

Closed ben7th closed 10 years ago

ben7th commented 10 years ago
  1. GET请求,传入一个 scope 和一组 key,返回每个 key 对应的 tags
response: 
{
  scope: 'xxx'
  keys: [
    {
      key:'xxx', 
      tags:['xxx', 'xxx', ...],
      scope:'xxx',
      user_id:'xxx',
      user_name:'xxx'
    }
  ]
}
  1. GET请求,传入 secret, scope 和 count ,返回 secret 对应 user 使用最多的 tags (返回个数为 count 个)。
response: 
{
  scope: 'xxx'
  tags: [
    {
      tag: 'xxx',
      use_count: 'x' # 使用次数
    },
    ...
  ],
  user_id:'xxx',
  user_name:'xxx'
}

API 增加完毕后,把使用方法补充在这里: http://s.4ye.me/NdmHa4