YUKAI / bocco-api-docs

http://api-docs.bocco.me/
0 stars 0 forks source link

チャットルームの取得 で 件数指定と簡易レスポンス指定をしたい #26

Open tfuru opened 7 years ago

tfuru commented 7 years ago

非力なデバイスで ルーム一覧を取得して利用したいが、現在の仕様のJSONは大きすぎて利用が難しいので、件数指定と uuid,name,updated_at 等の重要フィールドだけで小さいものが欲しい。

案 /alpha/rooms/joined?access_token=xxxx&limit=2&fields=uuid,name,updated_at


[
{
uuid: "xxxxxxxx",
name: "ぼっこの部屋",
updated_at: "2016-11-05T00:01:12Z"
},
{
uuid: "xxxxxxxx",
name: "あおボッコ",
updated_at: "2016-11-05T00:01:12Z"
}
]
harajune commented 7 years ago

ご要望としてリリース候補に入れておきます。

参考ですが、一般にメモリが厳しい環境ではイベントベースのパーサーが有効ですので、下記のようなパーサーを活用いただくと解決できるかと思います。 https://github.com/squix78/json-streaming-parser