前段时间targeting
在Post API Reference中调用了一个字段,但现在它消失了,我不知道如何通过 API 为帖子添加特定的位置和语言定位。我搜索了很多:一些结果引用了targeting
参数。我试过了,但它似乎不起作用。
我尝试了两种方法来实现这一点,但没有任何成功:
$post_details = array('message' => $msg, 'privary' => array('value' => 'CUSTOM', 'description' => array('country' => 'Germany')));
$fb->api('/PAGE_ID/feed', 'POST', $post_details);
和
$post_details = array('message' => $msg, 'targeting' => array('country' => 'Germany'));
$fb->api('/PAGE_ID/feed', 'POST', $post_details);
请帮助我了解如何实现这一目标?