gpt4 book ai didi

javascript - 未定义的响应,facebook javascript SDK

转载 作者:行者123 更新时间:2023-12-02 18:37:47 24 4
gpt4 key购买 nike

我正在尝试从我拥有的 Facebook 页面导入一些照片。

我正在关注this在 Stack Overflow 上回答,更具体地说是客户端部分。

答案中建议采取 3 个步骤。

  1. 添加 javascript SDK,我就是这么做的。
  2. 有关身份验证的信息,但链接错误...
  3. 一段用于渲染照片的代码。

我跳过了第二步,因为我不确定在那里做什么,我在第三步中实现了代码:

FB.api('593959083958735/photos', function(response) {
if(!response || response.error) {
// render error
alert("Noo!!");
} else {
// render photos
alert("Yeah! " + response.status);
}

从这里我收到警报“是的!未定义”。响应始终是未定义。我想也许是因为我应该在身份验证部分做一些事情。

我在这里想做的就是从公共(public) Facebook 页面导入一些照片。这是正确的方法吗?如果是的话,为什么我需要任何身份验证。那么在身份验证部分我到底应该做什么?

最佳答案

From here I get the alert "Yeah! undefined". The response is always undefined. I think maybe because I should have done something in the authentication part.

您正在从页面查询照片,因此响应中没有status字段。

All I am trying to do here , is to import some photos from a public Facebook page. Is this the correct way to do that? If yes why would I need any authentication for it.

您不需要为此进行身份验证 - 正如您所看到的 here in the Graph API Explorer ,即使没有访问 token (清除该字段后),您也可以获得结果。您还可以在那里看到响应的结构。

关于javascript - 未定义的响应,facebook javascript SDK,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17145300/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com