我正在使用 FQL 运行此查询
"SELECT post_id, actor_id, description, created_time, message, type, attachment FROM stream WHERE source_id = $page_id AND type > 0 LIMIT 0,9"
它返回 10 个项目,其中包含很多未使用的信息,并且需要一些帮助和指导来帮助将其简化为类似
{
"image" : '...',
"text" : '...',
"username" : '...',
"userurl" : '...',
"userpic" : '...'
}
有人可以给我一些关于重新格式化 JSON 对象的提示吗?
谢谢