2

使用 Linkedin 教程,我正在尝试使用 Javascript 登录 LinkedIn。

我遇到的问题:使用firebug进行验证我意识到http请求没有显示错误,但是LinkedIn按钮没有呈现并且http响应是:

(function(){
var r=("true" === "false"), a=("false" === "false"), h=[], e=("false" === "true");
var p="${SCOPE_NAME}";
var s=("SCOPE_VALID" === "SCOPE_INVALID"), n=("SCOPE_VALID" === "SCOPE_NOT_AUTHORIZED"),
d=("SCOPE_VALID" === "SCOPE_DISABLED");

if(e){
    throw new Error("An error occurred.");
}
else if (!a) {  
  throw new Error("API Key is invalid");
}
else if (s) {
  throw new Error("Scope parameter is invalid: " + p);
}
else if (n) {
  throw new Error("Scope parameter is not authorized: " + p);
}
else if (d) {
  throw new Error("Scope parameter is disabled: " + p);
}
else if (h.length == 0) {
  throw new Error("You must specify a valid JavaScript API Domain as part of this key's
configuration.");
}
else if (!r) {
  throw new Error("JavaScript API Domain is restricted to "+h.join(", "));
}

else {
  throw new Error("Unknown Error");
}
})();

你能帮我解决这个问题吗?

4

1 回答 1

1
  1. 转到https://www.linkedin.com/secure/developer
  2. 单击您正在使用的应用程序名称。
  3. 添加您的域名(' http://www.example.com '),或者如果您使用的是 localhost,则将(' http://localhost ')添加到 JavaScript API 域:
  4. 保存更改。
于 2015-03-19T13:36:07.963 回答