package com.moral.yunfushao.wxapi.data;
|
|
/**
|
* @author : chenqi.
|
* @e_mail : 1650699704@163.com.
|
* @create_time : 2018/11/26.
|
* @Package_name: pregnancy_guard_android
|
* 微信登陆第二步:通过code获取access_token
|
* 获取第一步的code后,请求以下链接获取access_token:
|
* access_token 接口调用凭证
|
* expires_in access_token接口调用凭证超时时间,单位(秒)
|
* refresh_token 用户刷新access_token
|
* openid 授权用户唯一标识
|
* scope 用户授权的作用域,使用逗号(,)分隔
|
* unionid 当且仅当该移动应用已获得该用户的userinfo授权时,才会出现该字段
|
*/
|
public class AccessTokenBean {
|
|
/**
|
* access_token : 16_g05bQObzwWQOWfkVv93BczTZp6lQ-maNP0y_KFLxNFHqIxyNKP_CsMCD70tQS5p9j6u06Ku9v1a8mXPNwioZ4951gLFTexs5BiD3GyOA5Vc
|
* expires_in : 7200
|
* refresh_token : 16_64xaHzGViLYDNWms7huGPc5-ITuDtyKR6dOSUf6hePA0x9VAh9Y19i2vRV-dCscSpZqGBijckqqylkH42dmwC2aITUdNCGVtRiZprZ2JTQc
|
* openid : om70t07fhewP5taNp6FxGnyZW4Ps
|
* scope : snsapi_userinfo
|
* unionid : oKO9q1LmPyXjXq7pLo0HZ5cA87Q8
|
*/
|
|
private String access_token;
|
private int expires_in;
|
private String refresh_token;
|
private String openid;
|
private String scope;
|
private String unionid;
|
private String errmsg;
|
private int errcode;
|
|
public String getErrmsg() {
|
return errmsg;
|
}
|
|
public void setErrmsg(String errmsg) {
|
this.errmsg = errmsg;
|
}
|
|
public int getErrcode() {
|
return errcode;
|
}
|
|
public void setErrcode(int errcode) {
|
this.errcode = errcode;
|
}
|
|
public String getAccess_token() {
|
return access_token;
|
}
|
|
public void setAccess_token(String access_token) {
|
this.access_token = access_token;
|
}
|
|
public int getExpires_in() {
|
return expires_in;
|
}
|
|
public void setExpires_in(int expires_in) {
|
this.expires_in = expires_in;
|
}
|
|
public String getRefresh_token() {
|
return refresh_token;
|
}
|
|
public void setRefresh_token(String refresh_token) {
|
this.refresh_token = refresh_token;
|
}
|
|
public String getOpenid() {
|
return openid;
|
}
|
|
public void setOpenid(String openid) {
|
this.openid = openid;
|
}
|
|
public String getScope() {
|
return scope;
|
}
|
|
public void setScope(String scope) {
|
this.scope = scope;
|
}
|
|
public String getUnionid() {
|
return unionid;
|
}
|
|
public void setUnionid(String unionid) {
|
this.unionid = unionid;
|
}
|
}
|