gpt4 book ai didi

javascript - 以下 JavaScript 代码与 Facebook 相关

转载 作者:行者123 更新时间:2023-11-28 16:13:00 25 4
gpt4 key购买 nike

<!--Load scripts for Facebook scraper-->
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
FB.init({
appId : '154617751273927',
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true // parse XFBML
});
};

(function() {
var e = document.createElement('script');
e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js';
e.async = true;
document.getElementById('fb-root').appendChild(e);
}());

评论中使用“scraper”一词是什么意思?这看起来像一个异步函数,它是 http://connect.facebook.net/en_US/all.js

我不确定这个 al.js 是做什么的。附加到 fb-root 元素的结果。

这个异步函数有什么作用以及为什么它被称为“scraper”?

最佳答案

您在问题中提出了-

我不确定这个 al.js 的作用

实际上all.jsFacebook JavaScript SDK(软件开发工具包)一个包含所有常见选项的JavaScript文件。

这个异步函数的作用

async 函数异步加载SDK/all.js文件,这意味着它在加载期间不会停止页面渲染该文件。

SDK 将元素插入到 fb-root 中,这些元素期望相对于正文或相对于靠近页面顶部的元素定位。

加载 SDK 后,分配给 window.fbAsyncInit 的函数就会立即运行。加载 SDK 后要运行的任何代码都应放置在该函数内以及调用 FB.init 之后。

为什么叫爬虫

Web scraping is closely related to web indexing, which indexesinformation on the web using a bot and is a universal techniqueadopted by most search engines. In contrast, web scraping focuses moreon the transformation of unstructured data on the web, typically inHTML format, into structured data that can be stored and analyzed in acentral local database or spreadsheet. Web scraping is also related toweb automation, which simulates human browsing using computersoftware. Uses of web scraping include online price comparison,weather data monitoring, website change detection, research, webmashup and web data integration. Read More...

我对faceBook __scraper__的一些了解

实际上,它可以从网站(从您的网站,因为您使用过 it/all.js)抓取数据,并将该数据发送到 Facebook。基本上,这种抓取的一个常见示例是网页上的 FaceBook Like 按钮。当用户点击 Facebook Like 按钮时,scraper(在本例中为 all.js)抓取该网站的一些数据并将这些数据发送到 Facebook,然后 Facebook 发布这些数据数据到用户的个人资料中,但这只是一个示例。 FaceBook scraper 允许用户“与 Facebook 连接”,以获得身临其境的定制博客文章或视频体验。用户的 FB 信息(例如姓名、年龄、位置、个人资料图片、兴趣等)被抓取并编织成品牌故事。

You can read more here .

在网络上,一些使用 __scraper__ 的网站也仍然保留来自良好网站的数据/内容,并通过更改/修改原始数据将其发布到其他网站。几天前,我在另一个网站上找到了我的答案之一,我真的很震惊。我已经报告了元about this ,你可能会觉得很有趣。

关于javascript - 以下 JavaScript 代码与 Facebook 相关,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12327617/

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