repo
stringclasses
1k values
file_url
stringlengths
96
373
file_path
stringlengths
11
294
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
6 values
commit_sha
stringclasses
1k values
retrieved_at
stringdate
2026-01-04 14:45:56
2026-01-04 18:30:23
truncated
bool
2 classes
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/qywx/api/user/JwUserAPI.java
src/main/java/com/jeecg/qywx/api/user/JwUserAPI.java
package com.jeecg.qywx.api.user; import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSONArray; import com.alibaba.fastjson.JSONObject; import com.jeecg.qywx.api.base.JwAccessTokenAPI; import com.jeecg.qywx.api.base.JwParamesAPI; import com.jeecg.qywx.api.core.common.AccessToken; import com.jeecg.qywx.api.co...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/qywx/api/user/vo/User.java
src/main/java/com/jeecg/qywx/api/user/vo/User.java
package com.jeecg.qywx.api.user.vo; import com.alibaba.fastjson.JSONObject; import com.alibaba.fastjson.annotation.JSONField; /** * * @author Yqj * 企业微信--user * */ public class User { private String userid;//成员UserID。对应管理端的帐号,企业内必须唯一。长度为1~64个字节 private String name;//成员名称。长度为1~64个字节 private Integer[] departm...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/qywx/api/department/JwDepartmentAPI.java
src/main/java/com/jeecg/qywx/api/department/JwDepartmentAPI.java
package com.jeecg.qywx.api.department; import java.util.List; import com.alibaba.fastjson.JSON; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import com.alibaba.fastjson.JSONObject; import com.jeecg.qywx.api.base.JwAccessTokenAPI; import com.jeecg.qywx.api.base.JwParamesAPI; import com.jeecg.qywx.api.core....
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/qywx/api/department/vo/DepartMsgResponse.java
src/main/java/com/jeecg/qywx/api/department/vo/DepartMsgResponse.java
package com.jeecg.qywx.api.department.vo; import com.jeecg.qywx.api.core.common.MsgResponse; public class DepartMsgResponse extends MsgResponse { private static final long serialVersionUID = -4154816708672985619L; private Integer id; public Integer getId() { return id; } public void setId(Integer id) { t...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/qywx/api/department/vo/Department.java
src/main/java/com/jeecg/qywx/api/department/vo/Department.java
package com.jeecg.qywx.api.department.vo; import java.io.Serializable; /** * 微信部门 * * @author zhoujf */ public class Department implements Serializable { private static final long serialVersionUID = 6102281663991601498L; private String id; private String name; private String parentid; private String or...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/qywx/api/userandopenmsg/JwCardMessageAPI.java
src/main/java/com/jeecg/qywx/api/userandopenmsg/JwCardMessageAPI.java
package com.jeecg.qywx.api.userandopenmsg; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import com.alibaba.fastjson.JSONObject; import com.jeecg.qywx.api.base.JwAccessTokenAPI; import com.jeecg.qywx.api.base.JwParamesAPI; import com.jeecg.qywx.api.core.common.AccessToken; import com.jeecg.qywx.api.core.ut...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/qywx/api/userandopenmsg/vo/UserToOpen.java
src/main/java/com/jeecg/qywx/api/userandopenmsg/vo/UserToOpen.java
package com.jeecg.qywx.api.userandopenmsg.vo; public class UserToOpen { private String userid;//企业号内的成员id private int agentid;// 整型,需要发送红包的应用ID,若只是使用微信支付和企业转账,则无需该参数 public String getUserid() { return userid; } public void setUserid(String userid) { this.userid = userid; } public int getAgentid() { retu...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/qywx/api/userandopenmsg/vo/OpenToUser.java
src/main/java/com/jeecg/qywx/api/userandopenmsg/vo/OpenToUser.java
package com.jeecg.qywx.api.userandopenmsg.vo; public class OpenToUser { private String openid;//在使用微信支付、微信红包和企业转账之后,返回结果的openid public String getOpenid() { return openid; } public void setOpenid(String openid) { this.openid = openid; } }
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/qywx/api/conversation/ConversationAPI.java
src/main/java/com/jeecg/qywx/api/conversation/ConversationAPI.java
package com.jeecg.qywx.api.conversation; import com.alibaba.fastjson.JSONArray; import com.alibaba.fastjson.JSONObject; import com.jeecg.qywx.api.conversation.vo.BaseMessage; import com.jeecg.qywx.api.conversation.vo.Conversation; import com.jeecg.qywx.api.conversation.vo.Conversation4Update; import com.jeecg.qywx.api...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/qywx/api/conversation/vo/Link.java
src/main/java/com/jeecg/qywx/api/conversation/vo/Link.java
package com.jeecg.qywx.api.conversation.vo; public class Link { private String title; private String description; private String url; private String thumb_media_id; public Link(String title, String description, String url, String thumb_media_id) { this.title = title; this.description = description; this....
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/qywx/api/conversation/vo/BaseMessage.java
src/main/java/com/jeecg/qywx/api/conversation/vo/BaseMessage.java
package com.jeecg.qywx.api.conversation.vo; public abstract class BaseMessage { /**接收人*/ protected Receiver receiver; /**发送人*/ protected String sender; /**消息类型*/ protected String msgtype; public BaseMessage() { // TODO Auto-generated constructor stub } public BaseMessage(Receiver receiver, String sender...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/qywx/api/conversation/vo/Conversation.java
src/main/java/com/jeecg/qywx/api/conversation/vo/Conversation.java
package com.jeecg.qywx.api.conversation.vo; public class Conversation { private String chatid; private String name; private String owner; private String[] userlist; public Conversation() { // TODO Auto-generated constructor stub } public Conversation(String chatid, String name, String owner, String[] use...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/qywx/api/conversation/vo/Conversation4Update.java
src/main/java/com/jeecg/qywx/api/conversation/vo/Conversation4Update.java
package com.jeecg.qywx.api.conversation.vo; public class Conversation4Update { String chatid; String op_user; String name; String owner; String[] addUserlist; String[] delUserlist; public Conversation4Update() { // TODO Auto-generated constructor stub } public Conversation4Update(String chatid, String o...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/qywx/api/conversation/vo/LinkMessage.java
src/main/java/com/jeecg/qywx/api/conversation/vo/LinkMessage.java
package com.jeecg.qywx.api.conversation.vo; public class LinkMessage extends BaseMessage{ private Link link; public LinkMessage() { // TODO Auto-generated constructor stub } public LinkMessage(Receiver receiver, String sender,Link link) { super(receiver, sender, "link"); this.link= link; } public Li...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/qywx/api/conversation/vo/Media.java
src/main/java/com/jeecg/qywx/api/conversation/vo/Media.java
package com.jeecg.qywx.api.conversation.vo; public class Media { private String media_id; public Media() { // TODO Auto-generated constructor stub } public Media(String media_id) { this.media_id = media_id; } public String getMedia_id() { return media_id; } public void setMedia_id(String...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/qywx/api/conversation/vo/ImageMessage.java
src/main/java/com/jeecg/qywx/api/conversation/vo/ImageMessage.java
package com.jeecg.qywx.api.conversation.vo; /** * 图片消息 * @author SunHaiFeng * */ public class ImageMessage extends BaseMessage{ private Media image; public ImageMessage() { super.msgtype = "image"; } public ImageMessage(Receiver receiver, String sender, Media image) { super(receiver, sender, "image"); ...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/qywx/api/conversation/vo/TextMessage.java
src/main/java/com/jeecg/qywx/api/conversation/vo/TextMessage.java
package com.jeecg.qywx.api.conversation.vo; /** * 会话文本消息视图 * @author SunHaiFeng * */ public class TextMessage extends BaseMessage{ /**文本内容*/ private Text text; public TextMessage() { super.msgtype = "text"; } public TextMessage(Receiver receiver, String sender,Text text) { super(receiver, sender, "tex...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/qywx/api/conversation/vo/FileMessage.java
src/main/java/com/jeecg/qywx/api/conversation/vo/FileMessage.java
package com.jeecg.qywx.api.conversation.vo; /** * 文件消息 * @author SunHaiFeng * */ public class FileMessage extends BaseMessage{ private Media file; public FileMessage() { super.msgtype = "file"; } public FileMessage(Receiver receiver, String sender,Media file) { super(receiver, sender, "file"); this....
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/qywx/api/conversation/vo/VoiceMessage.java
src/main/java/com/jeecg/qywx/api/conversation/vo/VoiceMessage.java
package com.jeecg.qywx.api.conversation.vo; public class VoiceMessage extends BaseMessage{ private Media voice; public VoiceMessage() { // TODO Auto-generated constructor stub } public VoiceMessage(Receiver receiver, String sender,Media voice) { super(receiver, sender, "voice"); this.voice= voice; } ...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/qywx/api/conversation/vo/Text.java
src/main/java/com/jeecg/qywx/api/conversation/vo/Text.java
package com.jeecg.qywx.api.conversation.vo; public class Text { private String content; public Text() { // TODO Auto-generated constructor stub } public void setContent(String content) { this.content = content; } public String getContent() { return content; } }
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/qywx/api/conversation/vo/Receiver.java
src/main/java/com/jeecg/qywx/api/conversation/vo/Receiver.java
package com.jeecg.qywx.api.conversation.vo; public class Receiver { private String type; private String id; public Receiver() { // TODO Auto-generated constructor stub } public Receiver(String type, String id) { this.type = type; this.id = id; } public String getType() { return type; } public v...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/qywx/api/conversation/vo/Mute.java
src/main/java/com/jeecg/qywx/api/conversation/vo/Mute.java
package com.jeecg.qywx.api.conversation.vo; public class Mute { private String userid; private Integer status; public Mute(String userid, Integer status) { this.userid = userid; this.status = status; } public String getUserid() { return userid; } public void setUserid(String userid) { this.userid ...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/qywx/api/message/JwMessageAPI.java
src/main/java/com/jeecg/qywx/api/message/JwMessageAPI.java
package com.jeecg.qywx.api.message; import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSONObject; import com.jeecg.qywx.api.base.JwAccessTokenAPI; import com.jeecg.qywx.api.base.JwParamesAPI; import com.jeecg.qywx.api.core.common.AccessToken; import com.jeecg.qywx.api.core.util.HttpUtil; import com.jeecg.q...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/qywx/api/message/vo/MpnewsEntity.java
src/main/java/com/jeecg/qywx/api/message/vo/MpnewsEntity.java
package com.jeecg.qywx.api.message.vo; public class MpnewsEntity { private MpnewsArticles[] articles;//图文消息,一个图文消息支持1到8个图文 public MpnewsArticles[] getArticles() { return articles; } public void setArticles(MpnewsArticles[] articles) { this.articles = articles; } }
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/qywx/api/message/vo/MarkdownEntity.java
src/main/java/com/jeecg/qywx/api/message/vo/MarkdownEntity.java
package com.jeecg.qywx.api.message.vo; /** * Markdown消息体 * * @author sunjianlei */ public class MarkdownEntity { /** * 消息内容,最长不超过2048个字节,注意:主页型应用推送的文本消息在微信端最多只显示20个字(包含中英文) */ private String content; public String getContent() { return content; } public void setContent(Strin...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/qywx/api/message/vo/ImageEntity.java
src/main/java/com/jeecg/qywx/api/message/vo/ImageEntity.java
package com.jeecg.qywx.api.message.vo; public class ImageEntity { private String media_id;//图片媒体文件id,可以调用上传临时素材或者永久素材接口获取,永久素材media_id必须由发消息的应用创建 public String getMedia_id() { return media_id; } public void setMedia_id(String media_id) { this.media_id = media_id; } }
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/qywx/api/message/vo/Mpnews.java
src/main/java/com/jeecg/qywx/api/message/vo/Mpnews.java
package com.jeecg.qywx.api.message.vo; public class Mpnews { private String touser;//成员ID列表(消息接收者,多个接收者用‘|’分隔,最多支持1000个)。特殊情况:指定为@all,则向关注该企业应用的全部成员发送 private String toparty;//部门ID列表,多个接收者用‘|’分隔,最多支持100个。当touser为@all时忽略本参 private String totag;// 标签ID列表,多个接收者用‘|’分隔。当touser为@all时忽略本参数 private String msgtype;//...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/qywx/api/message/vo/FixMpnewsEntity.java
src/main/java/com/jeecg/qywx/api/message/vo/FixMpnewsEntity.java
package com.jeecg.qywx.api.message.vo; public class FixMpnewsEntity { private String media_id; public String getMedia_id() { return media_id; } public void setMedia_id(String media_id) { this.media_id = media_id; } }
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/qywx/api/message/vo/Voice.java
src/main/java/com/jeecg/qywx/api/message/vo/Voice.java
package com.jeecg.qywx.api.message.vo; public class Voice { private String touser;//成员ID列表(消息接收者,多个接收者用‘|’分隔,最多支持1000个)。特殊情况:指定为@all,则向关注该企业应用的全部成员发送 private String toparty;//部门ID列表,多个接收者用‘|’分隔,最多支持100个。当touser为@all时忽略本参 private String totag;// 标签ID列表,多个接收者用‘|’分隔。当touser为@all时忽略本参数 private String msgtype;//消息类型,此时固定为:...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/qywx/api/message/vo/TextEntity.java
src/main/java/com/jeecg/qywx/api/message/vo/TextEntity.java
package com.jeecg.qywx.api.message.vo; public class TextEntity { private String content;//消息内容,最长不超过2048个字节,注意:主页型应用推送的文本消息在微信端最多只显示20个字(包含中英文) public String getContent() { return content; } public void setContent(String content) { this.content = content; } }
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/qywx/api/message/vo/FileEntity.java
src/main/java/com/jeecg/qywx/api/message/vo/FileEntity.java
package com.jeecg.qywx.api.message.vo; public class FileEntity { private String media_id;//媒体文件id,可以调用上传临时素材或者永久素材接口获取 public String getMedia_id() { return media_id; } public void setMedia_id(String media_id) { this.media_id = media_id; } }
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/qywx/api/message/vo/VideoEntity.java
src/main/java/com/jeecg/qywx/api/message/vo/VideoEntity.java
package com.jeecg.qywx.api.message.vo; public class VideoEntity { private String media_id;//视频媒体文件id,可以调用上传临时素材或者永久素材接口获取 private String title;//视频消息的标题,不超过128个字节,超过会自动截断 private String description;//视频消息的描述,不超过512个字节,超过会自动截断 public String getDescription() { return description; } public void setDescription(String de...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/qywx/api/message/vo/News.java
src/main/java/com/jeecg/qywx/api/message/vo/News.java
package com.jeecg.qywx.api.message.vo; public class News { private String touser;//成员ID列表(消息接收者,多个接收者用‘|’分隔,最多支持1000个)。特殊情况:指定为@all,则向关注该企业应用的全部成员发送 private String toparty;//部门ID列表,多个接收者用‘|’分隔,最多支持100个。当touser为@all时忽略本参 private String totag;// 标签ID列表,多个接收者用‘|’分隔。当touser为@all时忽略本参数 private String msgtype;//消...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/qywx/api/message/vo/VoiceEntity.java
src/main/java/com/jeecg/qywx/api/message/vo/VoiceEntity.java
package com.jeecg.qywx.api.message.vo; public class VoiceEntity { private String media_id;//语音文件id,可以调用上传临时素材或者永久素材接口获取 public String getMedia_id() { return media_id; } public void setMedia_id(String media_id) { this.media_id = media_id; } }
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/qywx/api/message/vo/Image.java
src/main/java/com/jeecg/qywx/api/message/vo/Image.java
package com.jeecg.qywx.api.message.vo; public class Image { private String touser;//成员ID列表(消息接收者,多个接收者用‘|’分隔,最多支持1000个)。特殊情况:指定为@all,则向关注该企业应用的全部成员发送 private String toparty;//部门ID列表,多个接收者用‘|’分隔,最多支持100个。当touser为@all时忽略本参数 private String totag;// 标签ID列表,多个接收者用‘|’分隔。当touser为@all时忽略本参数 private String msgtype;//消息类型,此时固定为...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/qywx/api/message/vo/MpnewsArticles.java
src/main/java/com/jeecg/qywx/api/message/vo/MpnewsArticles.java
package com.jeecg.qywx.api.message.vo; public class MpnewsArticles { private String title;//图文消息的标题,不超过128个字节,超过会自动截断 private String thumb_media_id;//图文消息缩略图的media_id, 可以在上传多媒体文件接口中获得。此处thumb_media_id即上传接口返回的media_id private String author;//图文消息的作者,不超过64个字节 private String content_source_url;//图文消息点击“阅读原文”之后的页面链接 priva...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/qywx/api/message/vo/TextCardEntity.java
src/main/java/com/jeecg/qywx/api/message/vo/TextCardEntity.java
package com.jeecg.qywx.api.message.vo; /** * @author sunjianlei */ public class TextCardEntity { private String title; // 是 标题,不超过128个字节,超过会自动截断(支持id转译) private String description;// 是 描述,不超过512个字节,超过会自动截断(支持id转译) private String url; // 是 点击后跳转的链接。最长2048字节,请确保包含了协议头(http/https) private String btntxt;...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/qywx/api/message/vo/NewsEntity.java
src/main/java/com/jeecg/qywx/api/message/vo/NewsEntity.java
package com.jeecg.qywx.api.message.vo; public class NewsEntity { private NewsArticle[] articles;// 定义数组图文消息,一个图文消息支持1到8条图文 public NewsArticle[] getArticles() { return articles; } public void setArticles(NewsArticle[] articles) { this.articles = articles; } }
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/qywx/api/message/vo/File.java
src/main/java/com/jeecg/qywx/api/message/vo/File.java
package com.jeecg.qywx.api.message.vo; public class File { private String touser;//成员ID列表(消息接收者,多个接收者用‘|’分隔,最多支持1000个)。特殊情况:指定为@all,则向关注该企业应用的全部成员发送 private String toparty;//部门ID列表,多个接收者用‘|’分隔,最多支持100个。当touser为@all时忽略本参 private String totag;// 标签ID列表,多个接收者用‘|’分隔。当touser为@all时忽略本参数 private String msgtype;//消...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/qywx/api/message/vo/TextCard.java
src/main/java/com/jeecg/qywx/api/message/vo/TextCard.java
package com.jeecg.qywx.api.message.vo; /** * 企业微信文本卡片消息 * * @author sunjianlei */ public class TextCard { private String touser;//成员ID列表(消息接收者,多个接收者用‘|’分隔,最多支持1000个)。特殊情况:指定为@all,则向关注该企业应用的全部成员发送 private String toparty;//部门ID列表,多个接收者用‘|’分隔,最多支持100个。当touser为@all时忽略本参 private String totag;// 标签ID列表,多个接收...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/qywx/api/message/vo/Video.java
src/main/java/com/jeecg/qywx/api/message/vo/Video.java
package com.jeecg.qywx.api.message.vo; public class Video { private String touser;//成员ID列表(消息接收者,多个接收者用‘|’分隔,最多支持1000个)。特殊情况:指定为@all,则向关注该企业应用的全部成员发送 private String toparty;//部门ID列表,多个接收者用‘|’分隔,最多支持100个。当touser为@all时忽略本参 private String totag;// 标签ID列表,多个接收者用‘|’分隔。当touser为@all时忽略本参数 private String msgtype;//消息类型,此时...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/qywx/api/message/vo/Text.java
src/main/java/com/jeecg/qywx/api/message/vo/Text.java
package com.jeecg.qywx.api.message.vo; public class Text { private String touser;//成员ID列表(消息接收者,多个接收者用‘|’分隔,最多支持1000个)。特殊情况:指定为@all,则向关注该企业应用的全部成员发送 private String toparty;//部门ID列表,多个接收者用‘|’分隔,最多支持100个。当touser为@all时忽略本参数 private String totag;//标签ID列表,多个接收者用‘|’分隔。当touser为@all时忽略本参数 private String msgtype;//消息类型,此时固定为:t...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/qywx/api/message/vo/FixMpnews.java
src/main/java/com/jeecg/qywx/api/message/vo/FixMpnews.java
package com.jeecg.qywx.api.message.vo; public class FixMpnews { private String touser;//成员ID列表(消息接收者,多个接收者用‘|’分隔,最多支持1000个)。特殊情况:指定为@all,则向关注该企业应用的全部成员发送 private String toparty;//部门ID列表,多个接收者用‘|’分隔,最多支持100个。当touser为@all时忽略本参 private String totag;// 标签ID列表,多个接收者用‘|’分隔。当touser为@all时忽略本参数 private String msgtype;/...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/qywx/api/message/vo/Markdown.java
src/main/java/com/jeecg/qywx/api/message/vo/Markdown.java
package com.jeecg.qywx.api.message.vo; /** * Markdown消息 * * @author sunjianlei */ public class Markdown { public Markdown() { this.msgtype = "markdown"; } /** * 成员ID列表(消息接收者,多个接收者用‘|’分隔,最多支持1000个)。特殊情况:指定为@all,则向关注该企业应用的全部成员发送 */ private String touser; /** * 部门ID列表,多个接收...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/qywx/api/message/vo/NewsArticle.java
src/main/java/com/jeecg/qywx/api/message/vo/NewsArticle.java
package com.jeecg.qywx.api.message.vo; public class NewsArticle { private String title;//标题,不超过128个字节,超过会自动截断 private String description;//描述,不超过512个字节,超过会自动截断 private String url;//点击后跳转的链接。 private String picurl;//图文消息的图片链接,支持JPG、PNG格式,较好的效果为大图640*320,小图80*80。如不填,在客户端不显示图片 public String getTitle() { return tit...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/qywx/api/media/JwMediaAPI.java
src/main/java/com/jeecg/qywx/api/media/JwMediaAPI.java
package com.jeecg.qywx.api.media; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import java.io.BufferedReader; import java.io.DataInputStream; import java.io.DataOutputStream; import java.io.File; import java.io.FileInputStream; import java.io.IOException; import java.io.InputStreamReader; import java.io.Ou...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/qywx/api/media/vo/UpdateFixSourceEntity.java
src/main/java/com/jeecg/qywx/api/media/vo/UpdateFixSourceEntity.java
package com.jeecg.qywx.api.media.vo; public class UpdateFixSourceEntity { private UpdateFixSourceArticles[] articles;// 图文消息,一个图文消息支持1到10个图文 public UpdateFixSourceArticles[] getArticles() { return articles; } public void setArticles(UpdateFixSourceArticles[] articles) { this.articles = articles; } }
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/qywx/api/media/vo/UpdateFixSourceArticles.java
src/main/java/com/jeecg/qywx/api/media/vo/UpdateFixSourceArticles.java
package com.jeecg.qywx.api.media.vo; public class UpdateFixSourceArticles { private String title;//图文消息的标题 private String thumb_media_id;//图文消息缩略图的media_id, 可以在上传永久素材接口中获得 private String author;//图文消息的作者 private String content_source_url;// 图文消息点击“阅读原文”之后的页面链接 private String content;//图文消息的内容,支持html标签 private St...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/qywx/api/media/vo/FixSource.java
src/main/java/com/jeecg/qywx/api/media/vo/FixSource.java
package com.jeecg.qywx.api.media.vo; public class FixSource { private int agentid;//企业应用的id,整型。可在应用的设置页面查看 private MpnewEntity mpnews; public int getAgentid() { return agentid; } public void setAgentid(int agentid) { this.agentid = agentid; } public MpnewEntity getMpnews() { return mpnews; } public void setMpnews(...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/qywx/api/media/vo/MpnewArticles.java
src/main/java/com/jeecg/qywx/api/media/vo/MpnewArticles.java
package com.jeecg.qywx.api.media.vo; public class MpnewArticles { private String title;//图文消息的标题 private String thumb_media_id;//图文消息缩略图的media_id, 可以在上传永久素材接口中获得 private String author;//图文消息的作者 private String content_source_url;// 图文消息点击“阅读原文”之后的页面链接 private String content;//图文消息的内容,支持html标签 private String digest;//图文...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/qywx/api/media/vo/MpnewEntity.java
src/main/java/com/jeecg/qywx/api/media/vo/MpnewEntity.java
package com.jeecg.qywx.api.media.vo; import com.jeecg.qywx.api.message.vo.MpnewsArticles; public class MpnewEntity { private MpnewArticles[] articles;// 图文消息,一个图文消息支持1到10个图文 public MpnewArticles[] getArticles() { return articles; } public void setArticles(MpnewArticles[] articles) { this.articles = articles; } p...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/qywx/api/media/vo/UpdateFixSource.java
src/main/java/com/jeecg/qywx/api/media/vo/UpdateFixSource.java
package com.jeecg.qywx.api.media.vo; public class UpdateFixSource { private int agentid;//企业应用的id,整型。可在应用的设置页面查看 private String media_id; private UpdateFixSourceEntity mpnews; public int getAgentid() { return agentid; } public void setAgentid(int agentid) { this.agentid = agentid; } public String getMedi...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/qywx/api/core/util/HttpUtil.java
src/main/java/com/jeecg/qywx/api/core/util/HttpUtil.java
package com.jeecg.qywx.api.core.util; import java.io.BufferedReader; import java.io.InputStream; import java.io.InputStreamReader; import java.io.OutputStream; import java.net.HttpURLConnection; import java.net.URL; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import com.alibaba.fastjson.JSONObject; /** ...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/qywx/api/core/util/WXUpload.java
src/main/java/com/jeecg/qywx/api/core/util/WXUpload.java
package com.jeecg.qywx.api.core.util; import com.alibaba.fastjson.JSONObject; import com.alipay.api.internal.util.StringUtils; import com.jeecg.qywx.api.base.JwAccessTokenAPI; import com.jeecg.qywx.api.base.JwParamesAPI; import com.jeecg.qywx.api.core.common.AccessToken; import java.io.*; import java.net.HttpURLConne...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/qywx/api/core/common/MsgResponse.java
src/main/java/com/jeecg/qywx/api/core/common/MsgResponse.java
package com.jeecg.qywx.api.core.common; import java.io.Serializable; /** * 微信接口响应 * * @author zhoujf */ public class MsgResponse implements Serializable { private static final long serialVersionUID = 6102281663991601498L; private Integer errcode; private String errmsg; public Integer getErrcode() { retur...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/qywx/api/core/common/AccessToken.java
src/main/java/com/jeecg/qywx/api/core/common/AccessToken.java
package com.jeecg.qywx.api.core.common; /** * 微信通用接口凭证 * * @author zhoujf * @date 2016-04-05 */ public class AccessToken { // 获取到的凭证 private String accesstoken; // 凭证有效时间,单位:秒 private int expiresIn; public String getAccesstoken() { return accesstoken; } public void setA...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/qywx/api/menu/JwMenuAPI.java
src/main/java/com/jeecg/qywx/api/menu/JwMenuAPI.java
package com.jeecg.qywx.api.menu; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import com.alibaba.fastjson.JSONObject; import com.jeecg.qywx.api.base.JwAccessTokenAPI; import com.jeecg.qywx.api.base.JwParamesAPI; import com.jeecg.qywx.api.core.common.AccessToken; import com.jeecg.qywx.api.core.util.HttpUtil...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/qywx/api/menu/vo/ComplexButton.java
src/main/java/com/jeecg/qywx/api/menu/vo/ComplexButton.java
package com.jeecg.qywx.api.menu.vo; import java.util.Arrays; /** * 复杂按钮(父按钮) * * @author zhoujf * @date 2016-04-05 */ public class ComplexButton extends Button { private Button[] sub_button; public Button[] getSub_button() { return sub_button; } public void setSub_b...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/qywx/api/menu/vo/Button.java
src/main/java/com/jeecg/qywx/api/menu/vo/Button.java
package com.jeecg.qywx.api.menu.vo; /** * 按钮的基类 * * @author zhoujf * @date 2016-04-05 */ public class Button { private String name; public String getName() { return name; } public void setName(String name) { this.name = name; } @Over...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/qywx/api/menu/vo/ViewButton.java
src/main/java/com/jeecg/qywx/api/menu/vo/ViewButton.java
package com.jeecg.qywx.api.menu.vo; /** * view类型的菜单 * * @author zhoujf * @date 2016-04-05 */ public class ViewButton extends Button { private String type; private String url; public String getType() { return type; } public void setType(String type) { ...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/qywx/api/menu/vo/Menu.java
src/main/java/com/jeecg/qywx/api/menu/vo/Menu.java
package com.jeecg.qywx.api.menu.vo; import java.util.Arrays; /** * 菜单 * *@author zhoujf *@date 2016-04-05 */ public class Menu { private Button[] button; public Button[] getButton() { return button; } public void setButton(Button[] button) { this.button = ...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/qywx/api/menu/vo/CommonButton.java
src/main/java/com/jeecg/qywx/api/menu/vo/CommonButton.java
package com.jeecg.qywx.api.menu.vo; /** * 普通按钮(子按钮) * * @author zhoujf * @date 2016-04-05 */ public class CommonButton extends Button { private String type; private String key; private String url; public String getUrl() { return url; } public void setUrl(String url) { this...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/dingtalk/api/oauth2/JdtOauth2API.java
src/main/java/com/jeecg/dingtalk/api/oauth2/JdtOauth2API.java
package com.jeecg.dingtalk.api.oauth2; import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSONObject; import com.jeecg.dingtalk.api.core.util.ApiUrls; import com.jeecg.dingtalk.api.core.util.HttpUtil; import com.jeecg.dingtalk.api.oauth2.vo.ContactUser; import org.slf4j.Logger; import org.slf4j.LoggerFactor...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/dingtalk/api/oauth2/vo/ContactUser.java
src/main/java/com/jeecg/dingtalk/api/oauth2/vo/ContactUser.java
package com.jeecg.dingtalk.api.oauth2.vo; /** * 获取用户通讯录个人信息,返回用户信息 * * @author sunjianlei */ public class ContactUser { // 用户的钉钉昵称。 private String nick; // 头像URL。 private String avatarUrl; // 用户的手机号。 // 说明 如果要获取用户手机号,需要在开发者后台申请个人手机号信息权限 private String mobile; // 用户的openId。 pr...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/dingtalk/api/base/JdtBaseAPI.java
src/main/java/com/jeecg/dingtalk/api/base/JdtBaseAPI.java
package com.jeecg.dingtalk.api.base; import com.alibaba.fastjson.JSONObject; import com.jeecg.dingtalk.api.core.vo.AccessToken; import com.jeecg.dingtalk.api.core.util.ApiUrls; import com.jeecg.dingtalk.api.core.util.HttpUtil; import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** * 钉钉基础接口 * * @author sunjia...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/dingtalk/api/user/JdtUserAPI.java
src/main/java/com/jeecg/dingtalk/api/user/JdtUserAPI.java
package com.jeecg.dingtalk.api.user; import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSONObject; import com.jeecg.dingtalk.api.core.response.Response; import com.jeecg.dingtalk.api.core.util.ApiUrls; import com.jeecg.dingtalk.api.core.util.HttpUtil; import com.jeecg.dingtalk.api.core.util.JdtTypes; impor...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/dingtalk/api/user/body/GetUserListBody.java
src/main/java/com/jeecg/dingtalk/api/user/body/GetUserListBody.java
package com.jeecg.dingtalk.api.user.body; /** * 获取用户列表接口所需参数 * * @author sunjianlei */ public class GetUserListBody { /** * 部门ID,根部门ID为1。必填 */ private int dept_id; /** * 分页查询的游标,最开始传0,后续传返回参数中的next_cursor值 */ private int cursor; /** * 分页大小 */ private int siz...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/dingtalk/api/user/vo/UserRole.java
src/main/java/com/jeecg/dingtalk/api/user/vo/UserRole.java
package com.jeecg.dingtalk.api.user.vo; /** * 角色 * * @author sunjianlei */ public class UserRole { /** * 角色ID */ private Number id; /** * 角色名称 */ private String name; /** * 角色组名称 */ private String group_name; public Number getId() { return id; ...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/dingtalk/api/user/vo/DeptOrder.java
src/main/java/com/jeecg/dingtalk/api/user/vo/DeptOrder.java
package com.jeecg.dingtalk.api.user.vo; /** * 员工在对应的部门中的排序 * * @author sunjianlei */ public class DeptOrder { /** * 部门ID */ private Number dept_id; /** * 员工在部门中的排序 */ private Number order; public Number getDept_id() { return dept_id; } public DeptOrder set...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/dingtalk/api/user/vo/UnionEmpExt.java
src/main/java/com/jeecg/dingtalk/api/user/vo/UnionEmpExt.java
package com.jeecg.dingtalk.api.user.vo; /** * 当用户来自于关联组织时的关联信息 * * @author sunjianlei */ public class UnionEmpExt { /** * 员工的userid */ private String userid; /** * 关联映射关系 */ private UnionEmpMapVo[] union_emp_map_list; /** * 当前用户所属的组织的企业corpid */ private String...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/dingtalk/api/user/vo/DeptLeader.java
src/main/java/com/jeecg/dingtalk/api/user/vo/DeptLeader.java
package com.jeecg.dingtalk.api.user.vo; /** * 员工在对应的部门中是否领导。 * * @author sunjianlei */ public class DeptLeader { /** * 部门ID */ private Number dept_id; /** * 是否是领导 */ private Boolean leader; public Number getDept_id() { return dept_id; } public DeptLeader s...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/dingtalk/api/user/vo/User.java
src/main/java/com/jeecg/dingtalk/api/user/vo/User.java
package com.jeecg.dingtalk.api.user.vo; import java.util.Arrays; /** * 钉钉用户对象 * * @author sunjianlei */ public class User { /** * 员工的userid */ private String userid; /** * 员工在当前开发者企业账号范围内的唯一标识 */ private String unionid; /** * 员工名称 */ private String name; ...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/dingtalk/api/user/vo/UnionEmpMapVo.java
src/main/java/com/jeecg/dingtalk/api/user/vo/UnionEmpMapVo.java
package com.jeecg.dingtalk.api.user.vo; /** * 关联映射关系 * * @author sunjianlei */ public class UnionEmpMapVo { /** * 关联分支组织中的员工userid */ private String userid; /** * 关联分支组织的企业corpid */ private String corp_id; public String getUserid() { return userid; } publ...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/dingtalk/api/department/JdtDepartmentAPI.java
src/main/java/com/jeecg/dingtalk/api/department/JdtDepartmentAPI.java
package com.jeecg.dingtalk.api.department; import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSONObject; import com.jeecg.dingtalk.api.core.response.Response; import com.jeecg.dingtalk.api.core.util.ApiUrls; import com.jeecg.dingtalk.api.core.util.HttpUtil; import com.jeecg.dingtalk.api.core.util.JdtTypes...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/dingtalk/api/department/vo/DeptParentResponse.java
src/main/java/com/jeecg/dingtalk/api/department/vo/DeptParentResponse.java
package com.jeecg.dingtalk.api.department.vo; /** * 【返回对象】获取指定用户的所有父部门列表 * * @author sunjianlei */ public class DeptParentResponse { /** * 父部门列表。 */ private Integer[] parent_dept_id_list; public Integer[] getParent_dept_id_list() { return parent_dept_id_list; } public DeptP...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/dingtalk/api/department/vo/Department.java
src/main/java/com/jeecg/dingtalk/api/department/vo/Department.java
package com.jeecg.dingtalk.api.department.vo; /** * 钉钉部门对象 * * @author sunjianlei */ public class Department { /** * 部门ID。 */ private Integer dept_id; /** * 部门名称。 */ private String name; /** * 父部门ID。 */ private Integer parent_id; /** * 部门标识字段。 */ ...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/dingtalk/api/message/JdtMessageAPI.java
src/main/java/com/jeecg/dingtalk/api/message/JdtMessageAPI.java
package com.jeecg.dingtalk.api.message; import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSONObject; import com.jeecg.dingtalk.api.core.response.Response; import com.jeecg.dingtalk.api.core.util.ApiUrls; import com.jeecg.dingtalk.api.core.util.HttpUtil; import com.jeecg.dingtalk.api.message.vo.*; import o...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/dingtalk/api/message/vo/MarkdownMessage.java
src/main/java/com/jeecg/dingtalk/api/message/vo/MarkdownMessage.java
package com.jeecg.dingtalk.api.message.vo; import com.alibaba.fastjson.JSONObject; import com.jeecg.dingtalk.api.core.util.MessageType; /** * 钉钉Markdown消息 * * @author sunjianlei */ public class MarkdownMessage extends SuperMessage { private JSONObject markdown = new JSONObject(); /** * 钉钉Markdown消息...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/dingtalk/api/message/vo/Message.java
src/main/java/com/jeecg/dingtalk/api/message/vo/Message.java
package com.jeecg.dingtalk.api.message.vo; import java.util.Arrays; import java.util.Collection; /** * 钉钉消息 * * @author sunjianlei */ public class Message<T extends SuperMessage> { /** * 发送消息时使用的微应用的AgentID。 */ private String agent_id; /** * 接收者的userid列表,最大用户列表长度100。 */ privat...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/dingtalk/api/message/vo/LinkMessage.java
src/main/java/com/jeecg/dingtalk/api/message/vo/LinkMessage.java
package com.jeecg.dingtalk.api.message.vo; import com.alibaba.fastjson.JSONObject; import com.jeecg.dingtalk.api.core.util.MessageType; /** * 钉钉链接消息 * * @author sunjianlei */ public class LinkMessage extends SuperMessage { private JSONObject link = new JSONObject(); /** * 钉钉链接消息 * * @para...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/dingtalk/api/message/vo/ImageMessage.java
src/main/java/com/jeecg/dingtalk/api/message/vo/ImageMessage.java
package com.jeecg.dingtalk.api.message.vo; import com.alibaba.fastjson.JSONObject; import com.jeecg.dingtalk.api.core.util.MessageType; /** * 钉钉图片消息 * * @author sunjianlei */ public class ImageMessage extends SuperMessage { private JSONObject image = new JSONObject(); /** * 钉钉图片消息 * * @pa...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/dingtalk/api/message/vo/TextMessage.java
src/main/java/com/jeecg/dingtalk/api/message/vo/TextMessage.java
package com.jeecg.dingtalk.api.message.vo; import com.alibaba.fastjson.JSONObject; import com.jeecg.dingtalk.api.core.util.MessageType; /** * 钉钉文本消息 * * @author sunjianlei */ public class TextMessage extends SuperMessage { private JSONObject text = new JSONObject(); /** * 钉钉文本消息 * * @para...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/dingtalk/api/message/vo/FileMessage.java
src/main/java/com/jeecg/dingtalk/api/message/vo/FileMessage.java
package com.jeecg.dingtalk.api.message.vo; import com.alibaba.fastjson.JSONObject; import com.jeecg.dingtalk.api.core.util.MessageType; /** * 钉钉文件消息 * * @author sunjianlei */ public class FileMessage extends SuperMessage { private JSONObject file = new JSONObject(); /** * 钉钉文件消息 * * @para...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/dingtalk/api/message/vo/VoiceMessage.java
src/main/java/com/jeecg/dingtalk/api/message/vo/VoiceMessage.java
package com.jeecg.dingtalk.api.message.vo; import com.alibaba.fastjson.JSONObject; import com.jeecg.dingtalk.api.core.util.MessageType; /** * 钉钉语音消息 * * @author sunjianlei */ public class VoiceMessage extends SuperMessage { private JSONObject voice = new JSONObject(); /** * 钉钉语音消息 * * @pa...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/dingtalk/api/message/vo/ActionCardMessage.java
src/main/java/com/jeecg/dingtalk/api/message/vo/ActionCardMessage.java
package com.jeecg.dingtalk.api.message.vo; import com.alibaba.fastjson.JSONArray; import com.alibaba.fastjson.JSONObject; import com.jeecg.dingtalk.api.core.util.MessageType; /** * 钉钉卡片消息 * * @author sunjianlei */ public class ActionCardMessage extends SuperMessage { private JSONObject action_card = new JSON...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/dingtalk/api/message/vo/SuperMessage.java
src/main/java/com/jeecg/dingtalk/api/message/vo/SuperMessage.java
package com.jeecg.dingtalk.api.message.vo; /** * 钉钉消息超类 * * @author sunjianlei */ public class SuperMessage { protected SuperMessage(String msgtype) { this.msgtype = msgtype; } private String msgtype; public String getMsgtype() { return msgtype; } }
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/dingtalk/api/core/util/ApiUrls.java
src/main/java/com/jeecg/dingtalk/api/core/util/ApiUrls.java
package com.jeecg.dingtalk.api.core.util; /** * 钉钉Api接口地址 * * @author sunjianlei */ public class ApiUrls { // ========================= JdtBaseAPI ========================= /** * 【GET】获取 access_token,appKey,appSecret */ public final static String ACCESS_TOKEN = "https://oapi.dingtalk.com/ge...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/dingtalk/api/core/util/HttpUtil.java
src/main/java/com/jeecg/dingtalk/api/core/util/HttpUtil.java
package com.jeecg.dingtalk.api.core.util; import com.alibaba.fastjson.JSONObject; import com.alibaba.fastjson.TypeReference; import com.alibaba.fastjson2.JSONFactory; import com.jeecg.dingtalk.api.core.response.Response; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import java.io.BufferedReader; import ja...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/dingtalk/api/core/util/JdtTypes.java
src/main/java/com/jeecg/dingtalk/api/core/util/JdtTypes.java
package com.jeecg.dingtalk.api.core.util; import com.alibaba.fastjson.TypeReference; import com.jeecg.dingtalk.api.core.vo.PageResult; import com.jeecg.dingtalk.api.department.vo.Department; import com.jeecg.dingtalk.api.user.vo.User; import java.lang.reflect.Type; import java.util.List; /** * 用于JSON泛型转换,定义各种实际类型 ...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/dingtalk/api/core/util/MessageType.java
src/main/java/com/jeecg/dingtalk/api/core/util/MessageType.java
package com.jeecg.dingtalk.api.core.util; /** * 钉钉消息类型 * * @author sunjianlei */ public class MessageType { /** * 文本消息 */ public static final String TEXT = "text"; /** * 图片消息 */ public static final String IMAGE = "image"; /** * 语音消息 */ public static final Stri...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/dingtalk/api/core/vo/AccessToken.java
src/main/java/com/jeecg/dingtalk/api/core/vo/AccessToken.java
package com.jeecg.dingtalk.api.core.vo; /** * 钉钉应用AccessToken * * @author sunjianlei */ public class AccessToken { /** * 获取到的accessToken */ private String accessToken; /** * accessToken有效时间,单位:秒 */ private int expiresIn; public AccessToken(String accessToken, int expiresI...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/dingtalk/api/core/vo/PageResult.java
src/main/java/com/jeecg/dingtalk/api/core/vo/PageResult.java
package com.jeecg.dingtalk.api.core.vo; import com.alibaba.fastjson.JSONObject; import java.util.List; /** * 分页返回结果 * * @author sunjianlei */ public class PageResult<T> { /** * 是否还有更多的数据 */ private Boolean has_more; /** * 下一次分页的游标,如果has_more为false,表示没有更多的分页数据。 */ private In...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/dingtalk/api/core/response/Response.java
src/main/java/com/jeecg/dingtalk/api/core/response/Response.java
package com.jeecg.dingtalk.api.core.response; import com.alibaba.fastjson.JSONObject; /** * API返回 * * @author sunjianlei */ public class Response<T> { /** * 请求ID。 */ private String request_id; /** * 返回码。 */ private Integer errcode; /** * 调用失败时返回的错误信息。 */ pr...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/weibo/dto/WeiBoMentionsDto.java
src/main/java/com/jeecg/weibo/dto/WeiBoMentionsDto.java
package com.jeecg.weibo.dto; public class WeiBoMentionsDto { //采用OAuth授权方式为必填参数,OAuth授权后获得。 private String access_token ; //若指定此参数,则返回ID比since_id大的微博(即比since_id时间晚的微博),默认为0。 private String since_id ; //若指定此参数,则返回ID小于或等于max_id的微博,默认为0。 private String max_id; //单页返回的记录条数,最大不超过200,默认为20。 private String count; //...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/weibo/dto/WeiboSendDto.java
src/main/java/com/jeecg/weibo/dto/WeiboSendDto.java
package com.jeecg.weibo.dto; import com.alipay.api.internal.util.StringUtils; import java.net.URLEncoder; /** * 发布微博 * @author Administrator * */ public class WeiboSendDto { //采用OAuth授权方式为必填参数,OAuth授权后获得 String access_token; //要发布的微博文本内容,必须做URLencode,内容不超过140个汉字。 String status; //图片的URL地址,必须以http开头。 Str...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/weibo/dto/WeiboFollowersDto.java
src/main/java/com/jeecg/weibo/dto/WeiboFollowersDto.java
package com.jeecg.weibo.dto; public class WeiboFollowersDto { //采用OAuth授权方式为必填参数,OAuth授权后获得。 private String access_token; //需要查询的用户UID。 private String uid; //需要查询的用户昵称。 private String screen_name; //单页返回的记录条数,默认为50,最大不超过200。 private String count; //返回结果的游标,下一页用返回值里的next_cursor,上一页用previous_cursor,默认为0。 pr...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/weibo/dto/WeiboUserTimelineDto.java
src/main/java/com/jeecg/weibo/dto/WeiboUserTimelineDto.java
package com.jeecg.weibo.dto; public class WeiboUserTimelineDto { // 采用OAuth授权方式为必填参数,OAuth授权后获得 private String access_token ; //需要查询的用户ID private String uid; //需要查询的用户昵称 private String screen_name; //若指定此参数,则返回ID比since_id大的微博(即比since_id时间晚的微博),默认为0 private String since_id; //若指定此参数,则返回ID小于或等于max_id的微博,默认为0 ...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/weibo/util/WeiboStatusesUtil.java
src/main/java/com/jeecg/weibo/util/WeiboStatusesUtil.java
package com.jeecg.weibo.util; import com.alipay.api.internal.util.StringUtils; import com.jeecg.weibo.dto.WeiBoMentionsDto; import com.jeecg.weibo.dto.WeiboUserTimelineDto; import com.jeecg.weibo.exception.BusinessException; public class WeiboStatusesUtil { /* * * 验证获取用户发布的微博的请求必填参数验证 */ public static void ...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/weibo/util/HttpUtil.java
src/main/java/com/jeecg/weibo/util/HttpUtil.java
package com.jeecg.weibo.util; import java.io.BufferedReader; import java.io.InputStream; import java.io.InputStreamReader; import java.io.OutputStream; import java.net.ConnectException; import java.net.HttpURLConnection; import java.net.URL; import com.alibaba.fastjson.JSONArray; import com.alibaba.fastjson.JSONObjec...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false
jeecgboot/weixin4j
https://github.com/jeecgboot/weixin4j/blob/9a0a503cc99e24c77de671890fae15ee3235669f/src/main/java/com/jeecg/weibo/util/WeiboCommentsUtil.java
src/main/java/com/jeecg/weibo/util/WeiboCommentsUtil.java
package com.jeecg.weibo.util; import com.alipay.api.internal.util.StringUtils; import com.jeecg.weibo.dto.WeiBoMentionsDto; import com.jeecg.weibo.exception.BusinessException; public class WeiboCommentsUtil { /* * * 获取@当前用户的最新微博的请求必填参数验证 * */ public static void getBymeParmValidate(WeiBoMentionsDto mention...
java
Apache-2.0
9a0a503cc99e24c77de671890fae15ee3235669f
2026-01-05T02:41:50.789942Z
false