use opauth
URL:http://opauth.org/ テストログ。 DLして展開、confファイルの編集。 opauth.conf.php 設置パスと、 ‘path’ => ‘/your_file_path/’, call backのURL, ‘callback_url’ => ‘yourcallback.php’, そして下部のStrategyに、keyやsecretを設置。 次にindex.php上のdefineを別ファイルでも使うので、まとめておく。 新規作成で、define.php。 define(‘CONF_FILE’, dirname(__FILE__).’/’.’opauth.conf.php’); define(‘OPAUTH_LIB_DIR’, dirname(__FILE__).’/lib/Opauth/’); index.phpでは、これをrequireする。 require_once ‘define.php’; 次にtwitterディレクトリを作成。 直下にindex.phpをおき、下を記載。 /** * Define paths */ require_once ‘../define.php’; /** * Load config */ if (!file_exists(CONF_FILE)){ trigger_error(‘Config file missing at ‘.CONF_FILE, E_USER_ERROR); exit(); } require CONF_FILE; /** * Instantiate Opauth with the […]