-1

ユーザーのプロファイルを取得する LinkedIn プラグインを作成しようとしています。その目的でREST APIを使用していますが、localhostから呼び出すと次のエラーが表示されます

Simple-LinkedIn: library not compatible with installed PECL OAuth extension. Please disable this extension to use the Simple-LinkedIn library.

私を導いてください。

索引ファイル

oauth ファイル

両方のファイルで、キー値のみが変更されます。

ウィンドウ 7 32 ビットで XAMPP サーバーを使用しています。

4

1 に答える 1

0

You really have two options.

First, you can follow the suggestion in the message above, and uninstall the PECL oauth module that conflicts with the Simple-LinkedIn library. PECL exstensions cna be uninstalled via:

pecl uninstall xxx

Where xxx is the module.

Secondly, you can use the already installed oauth module to make the LinkedIn calls. Details on making the calls using this library can be found on the LinkedIn Developers site:

https://developer.linkedin.com/documents/reading-data#toggleview:id=php https://developer.linkedin.com/documents/writing-linkedin-apis#toggleview:id=php

于 2012-06-21T20:39:01.947 に答える