このプラグインを使用した経験のある人はいますか? 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 ://バニラフォーラム.