我有一个.NET应用程序,我正在尝试获取仅在feed_targeting字段中指定某个城市的帖子。
因此,在下面的示例中,如果我运行查询,则会返回两个帖子。
运行此查询: 我/帖子?字段= feed_targeting
给我结果
"feed_targeting": {
"geo_locations": {
"cities": [
{
"key": 1111111
},
{
"key": 2222222
}
]
}
"feed_targeting": {
"geo_locations": {
"cities": [
{
"key": 3333333
}
]
}
我的问题是
有没有办法只查询1111111的城市,而api只返回一个帖子?