Facebook API仅针对加拿大

时间:2018-02-08 02:47:43

标签: facebook

我在使用FB api的定位功能时遇到了一些麻烦。我想只针对加拿大,但我似乎无法弄清楚文档对我的要求。这就是我试过的

  FB.api(
    '/' + pageId + '/live_videos',
    'POST',
    {access_token: accessToken,
    description: document.getElementById("streamDescription").value,
    title: document.getElementById("streamName").value,
    targeting: {excluded_countries: ["840"]}
    }

目前正在输出

"(#100) The targeting param has invalid values for: excluded_countries"

1 个答案:

答案 0 :(得分:0)

这是你如何做的

  FB.api(
    '/' + pageId + '/live_videos',
    'POST',
    {access_token: accessToken,
    description: document.getElementById("streamDescription").value,
    title: document.getElementById("streamName").value,
    targeting:{geo_locations:{countries:["CA"]}}
    }