6

このプラグインを使用した経験のある人はいますか? PHP 用のクライアント ライブラリを取得し、コントローラーに適切な関数をセットアップしました。バニラのプラグイン設定ページから「テスト」をクリックすると有効な応答が得られますが、行き詰まりました...ここからどこに行くのですか?

問題についてより明確にするために、次のステップが何であるかわかりません。つまり、私は何かが欠けているに違いないことを知っています...プラグインのエンドポイントとして使用しているコントローラー関数 (またはページ) は次のとおりです。

// 1. Get your client ID and secret here. 
$clientID = "1234";
$secret = "1234";

// 2. Grab the current user from your session management system or database here.
//so i check to see if the user is logged in to my codeigniter's auth
//all works fine

// 3. Fill in the user information in a way that Vanilla can understand.
$user = array();

if ($signedIn) {
// i then set these according to the user info of the logged in user
$user['uniqueid'] = '123';
$user['name'] = 'John PHP';
$user['email'] = 'john.php@anonymous.com';
$user['photourl'] = '';
}

// 4. Generate the jsConnect string.
$secure = true; 
WriteJsConnect($user, $_GET, $clientID, $secret, $secure);

http ://バニラフォーラム.

4

1 に答える 1

3

私も自分でこれを理解する必要があり、昨夜ようやくそうしました。私はファイルを作成してgithubリポジトリに入れ、CodeIgniterを使用している他の人が自分のサイトでJsConnect機能をより簡単に楽しめるようにしました。それが機能している今、私はそれが本当に好きです!

コードをダウンロードして、こちらのreadmeに従ってください: https ://github.com/mandersondesign/JSConnect-Codeigniter

問題が発生した場合はお知らせください。サポートさせていただきます。

于 2012-08-08T13:53:11.093 に答える