__construct() public method

构造函数
public __construct ( mixed $akey, mixed $skey, mixed $access_token, mixed $refresh_token = NULL ) : void
$akey mixed 微博开放平台应用APP KEY
$skey mixed 微博开放平台应用APP SECRET
$access_token mixed OAuth认证返回的token
$refresh_token mixed OAuth认证返回的token secret
return void
Example #1
0
 function __construct($akey, $skey, $access_token = NULL, $refresh_token = NULL)
 {
     parent::__construct($akey, $skey, $access_token, $refresh_token);
 }