com.healthy.common.security.social.qq.api.QQ Maven / Gradle / Ivy
package com.healthy.common.security.social.qq.api;
import com.healthy.common.security.social.qq.entity.QQUserInfo;
import java.io.IOException;
public interface QQ {
/**
* 获取用户信息
*
* @return QQUserInfo
* @throws IOException
*/
QQUserInfo getUserInfo() throws IOException;
}