wavechao / lwapi

1 stars 1 forks source link

[私信]获取私信对话列表接口 #33

Closed Naituw closed 11 years ago

Naituw commented 11 years ago

GET conversations/list.json

返回结果按 last_update 从新到旧排序

参数列表: later_than: 筛选 last_update 旧于此参数的对话,可选,不传则获取最新的 count: 获取条数,可选,默认20

限制: 所有用户均可以调用

返回内容: object为数组,每个元素包含字段:

conversation_id : 对话的id, with_user:对方的完整用户结构 last_content:最后说的内容(有可能是登陆用户或with_user说的) last_is_me: 最后说话的是否为登陆用户, 1为是,0为否 last_update:最后说话的时间

Naituw commented 11 years ago

sql 数据表:

conversationid int(11) user_a int(11) user_b int(11) create_at timestamp last_update timestamp last_user_id int(11)

wavechao commented 11 years ago

缺少message 数据表哦

Naituw commented 11 years ago

请完善相关API文档。目前GET此接口为 400 请求失败错误 Basic dGVhY2hlcjoxMjM0NDMyMQ==

wavechao commented 11 years ago

{ "code": 200, "message": "成功", "object": [] }