使用广告管理器时,您可以预览广告。还有一个超链接可以查看带有评论的帖子永久链接。有什么方法可以使用 API 获取该链接

最佳答案

首先,您必须获得广告所定位的广告素材。

$ad = new Ad($ad_id);
$ad->read(array(
    AdFields::CREATIVE,
));

然后从广告素材中获取信息。
$creative = new AdCreative($ad->creative['id']);
$creative->read(array(
    AdCreativeFields::EFFECTIVE_OBJECT_STORY_ID,
));

然后 $creative->effective_object_story_id 将包含一个看起来像 xxxxxxxxxxxxx_yyyyyyyyyyyyy 的 ID,其中 x 是页面的 ID,y 是帖子/视频/等的 ID。
如果你只是去 https://facebook.com/xxxxxxxxxxxxx_yyyyyyyyyyyyy 它应该把你重定向到正确的帖子

希望这可以帮助某人。

关于facebook-graph-api - 如何使用 Facebook API 获取 Facebook 广告永久链接,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/39259459/

10-12 23:51