コード例 #1
0
ファイル: SNS2.php プロジェクト: yunsite/php-opensdk
 /**
  * 初始化
  * @param string $appkey
  * @param string $appsecret
  */
 public static function init($appkey, $appsecret)
 {
     self::$client_id = $appkey;
     self::$client_secret = $appsecret;
 }
コード例 #2
0
ファイル: SNS2.php プロジェクト: kissthink/ym_oauth
 /**
  * 初始化
  * @param string $appid
  * @param string $appkey
  */
 public static function init($appid, $appkey)
 {
     self::$client_id = $appid;
     self::$client_secret = $appkey;
 }