到目前为止,我已经使用LinkedIn JavaScript API
了一个网站(使用 Linked In 登录),http
它运行良好。
<script type="text/javascript" src="http://platform.linkedin.com/in.js">
api_key: XXXXXXXXXXX
scope: r_fullprofile r_emailaddress r_contactinfo r_network
</script>
<script type="text/javascript">
function onLinkedInAuth() {
IN.API.Profile("me")
.fields("id,firstName,lastName,emailAddress")
.result(function (me) {
var member = me.values[0];
});
</script>
身体:
<script type="in/Login" data-onauth="onLinkedInAuth">
Hello, <?js= firstName ?> <?js= lastName ?>.
</script>
但是现在,我已将站点移至该站点,(https)
但它突然停止工作,并且浏览器一直阻止不安全的内容,因此我们看不到该sign in using linked in
按钮。