1

私のウェブサイトからlinkedInにアクセスしようとしています。そのために、新しいアプリケーションを作成し、API キーを取得しました。そして、以下の私のコードに実装されています。これにより、空白のページが表示されますが、Javascript API 開発者コンソールでのみ機能します。

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

    </head>
    <body>
    <script type="In/Login">
    Hello, <?js= firstName ?> <?js= lastName ?>
    </script>
    </body>

ログインボタンの取得にご協力ください。

4

2 に答える 2

1

ボタンを表示するには、特定の jQuery バージョンが必要であることがわかりました。

<script type="text/javascript" src="http://code.jquery.com/jquery-1.5b1.js"></script>
<script type="text/javascript" src="http://platform.linkedin.com/in.js">
    api_key: xxxxxxxxxxxxx
    onLoad: onLinkedInLoad
    authorize: true
</script>

そして、ボタンを表示するには、これもどこかで必要になりますが、ボディタグの内側!!!

<body>
<script type="IN/Login"></script>
</body>

問題に光を当てることを願っています!

于 2014-07-11T09:12:29.203 に答える