如何在chrome扩展中集成登录与链接

时间:2016-05-20 12:35:11

标签: authentication google-chrome-extension oauth oauth-2.0 linkedin-api

是否有人知道如何将链接的登录方法与chrome扩展程序集成?

我正在尝试将Login in与我的chrome扩展程序中的链接集成,但不知道如何操作。我尝试了这段代码,但它说:

<script type="text/javascript" src="//platform.linkedin.com/in.js">
    api_key: xxxxxxxxxxxxx
    onLoad: onLinkedInLoad
    authorize: true
</script>

<script type="text/javascript">
    function onLinkedInLoad() {
        IN.Event.on(IN, "auth", getProfileData);
    }

    function getProfileData() {
        IN.API.Profile("me").result(ShowProfileData);
    }

    function ShowProfileData(profiles) {
        var member = profiles.values[0];
        var id=member.id;
    }
</script>

<script type="in/Login"></script>

  

无法加载资源:net :: ERR_FILE_NOT_FOUND

1 个答案:

答案 0 :(得分:1)

我相信您可能拼写了错误的资源。我只是遇到了同样的问题,因为我试图调用文件oauth.js,但是在我的目录中我将其拼写为ouath.js。仔细检查所有拼写和用于查找文件的路径。