gpt4 book ai didi

javascript - 为什么 LinkedIn 身份验证的脚本标签不是有效的 JavaScript?

转载 作者:行者123 更新时间:2023-11-29 15:14:33 26 4
gpt4 key购买 nike

The LinkedIn guide for setting up auth with the Javascript SDK显示了一个代码示例,但对于作者的实际含义非常困惑。

<script type="text/javascript" src="//platform.linkedin.com/in.js">
api_key: [API_KEY]
onLoad: [ONLOAD]
authorize: [AUTHORIZE]
lang: [LANG_LOCALE]
</script>

它不是有效的 JS,没有逗号,引号也被省略。此外,该示例显示了方括号,但必须省略这些方括号,否则将引发错误。一个真实世界的例子会减轻这种困惑,但当然没有提供任何例子。

这是一个有效的示例,但使用了一个伪造的 API key (API key 与客户端 ID 相同——指南不费心解释)

<script type="text/javascript" src="//platform.linkedin.com/in.js">
api_key: 93h7nnksxj3ccd
authorize: true
lang: en_US
</script>

As you can see with this other SO question ,我不是唯一感到困惑的人,这个人和我有同样的想法,那就是需要引号。

这段代码实际上是如何工作的?对于类型为 text/javascript 的脚本标记,这是否被视为有效语法?

[edit] 回复:可能重复,似乎不是。查看所选答案。 [/编辑]

最佳答案

外部脚本直接读取并解析脚本标签的innerHTMLRoger Hu 的这篇博客文章对此进行了介绍:

文章检查了 LinkedIn 的 JavaScript 并确定了使用的解析器:

Basically the code below appears to extract out the innerHTML and then set the variables r and K to be the key/value pairs. White spaces are removed with the replace() function.

这里是一个简短的描述,随后是更长的摘录:

数据是从 innerHTML 中原始提取的:

l = f.innerHTML.replace(A, n)

定义每一行的正则表达式:

g = (/^[\s]*(.*?)[\s]*:[\s]*(.*)[\s]*$/),

每行使用它,将 r 设置为键,将 K 设置为值。

W = s.match(g);
r = W[1].replace(A, n);
K = W[2].replace(A, n)

如果没有匹配,它会提供以下错误:

script tag contents must be key/value pairs separated by a colon.

更大的摘录:

for (U = 0, q = t.length; U < q; U++) {
var f = t[U];
if (!m.test(f.src)) {
continue
}
if (b.test(f.src)) {
c = true
}
try {
l = f.innerHTML.replace(A, n)
} catch (z) {
try {
l = f.text.replace(A, n)
} catch (y) {}
}
}
l = l.replace(J, "$1").replace(A, n).replace(F, n);
ab = C.test(l.replace(j, n));
for (var U = 0, T = l.split(k), q = T.length; U < q; U++) {
var s = T[U];
if (!s || s.replace(j, n).length <= 0) {
continue
}
try {
W = s.match(g);
r = W[1].replace(A, n);
K = W[2].replace(A, n)
} catch (Y) {
if (!ab) {
console.warn("script tag contents must be key/value pairs separated by a colon. Source: " + Y)
}
continue
}
N(r, K)
}

正则表达式集定义在脚本的顶部:

var S = {
"bootstrapInit": +new Date()
},
p = document,
m = (/^https?:\/\/.*?linkedin.*?\/in\.js.*?$/),
b = (/async=true/),
D = (/^https:\/\//),
J = (/\/\*((?:.|[\s])*?)\*\//m),
F = (/\r/g),
j = (/[\s]/g),
g = (/^[\s]*(.*?)[\s]*:[\s]*(.*)[\s]*$/),
x = (/_([a-z])/gi),
A = (/^[\s]+|[\s]+$/g),
u = (/^[a-z]{2}(_)[A-Z]{2}$/),
C = (/suppress(Warnings|_warnings):true/gi),
d = (/^api(Key|_key)$/gi),

关于javascript - 为什么 LinkedIn 身份验证的脚本标签不是有效的 JavaScript?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50556282/

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