3

我一直在尝试通过 Graph API 在页面上发布以地理位置为目标的状态更新,但目前收效甚微。

使用 Facebook graph api,我已经成功地定位国家,但不能定位城市或地区。

尝试以下任何一种:

>>> graph.put_object("me", "feed", message="Targeted at Boston", targeting={"countries": 'US', 'cities': 'boston, ma'})                                                                                     
>>> graph.put_object("me", "feed", message="Targeted at Boston", targeting={"countries": 'US', 'cities': ['us, boston, ma']})
>>> graph.put_object("me", "feed", message="Targeted at Boston", targeting=[{'country': 'us', 'city': 'boston', 'region': 'ma'}])
>>> graph.put_object("me", "feed", message="Targeted at Seattle", targeting={"countries": 'US', 'cities': [{'name': 'seattle, wa'}]})
>>> graph.put_object("me", "feed", message="Targeted at Seattle", targeting={"countries": 'US', 'cities': [{'name': 'seattle, wa'}]})

导致公开帖子或具有自定义隐私但不针对任何特定位置的帖子。

这:

>>> graph.put_object("me", "feed", message="Targeted at Seattle", targeting={"countries": 'US'})

致力于选择性地仅针对美国。

我正在使用Facebook python-sdk来处理请求。

我一直在尝试多种方法来使定位起作用,但它的记录很差,而且 Facebook 开发者论坛上没有太多可用的信息。

有没有人能够传递用于地理定位多个目标的 json ......比如波士顿、马萨诸塞州、巴黎、法国(法语),然后同时传递两者?

4

2 回答 2

1

问题是您需要城市和区域设置键,您可以在此处找到: https ://developers.facebook.com/docs/reference/ads-api/get-autocomplete-data/

是的,您可以通过多个城市。

于 2012-06-21T22:19:33.057 回答
0

语言环境示例

curl -F 'access_token=[page_access_token]' 
     -F 'message=Testing post to certain language' 
     -F 'link=http://stackoverflow.com/questions/15280604/can-you-gate-and-target-a-page-post-through-the-facebook-graph-api' 
     -F 'feed_targeting={'locales':[1001]}' 
https://graph.facebook.com/[pageID]/feed
于 2014-02-19T16:16:35.307 回答