SaeTClientV2::account_education PHP Method

account_education() public method

对应API:{@link http://open.weibo.com/wiki/2/account/profile/education account/profile/education}
public account_education ( integer $uid = NULL ) : array
$uid integer 需要获取教育信息的用户UID,默认为当前登录用户。
return array
    function account_education($uid = NULL)
    {
        $params = array();
        if ($uid) {
            $this->id_format($uid);
            $params['uid'] = $uid;
        }
        return $this->oauth->get('account/profile/education', $params);
    }
SaeTClientV2