前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >环信发送消息

环信发送消息

作者头像
收心
发布2022-01-19 11:18:44
1.2K0
发布2022-01-19 11:18:44
举报
文章被收录于专栏:Java实战博客

SDK文档地址:https://docs-im.easemob.com/im/server/help/restastrict

Maven

代码语言:javascript
复制
        <dependency>
            <groupId>com.easemob.im</groupId>
            <artifactId>im-sdk-core</artifactId>
            <version>0.4.1</version>
        </dependency>
        <dependency>
            <groupId>commons-codec</groupId>
            <artifactId>commons-codec</artifactId>
            <version>1.14</version>
        </dependency>

配置类

代码语言:javascript
复制
import com.easemob.im.server.EMProperties;
import com.easemob.im.server.EMService;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

/**
 * @author : zanglikun
 * @date : 2021/11/19 17:25
 * @Version: 1.0
 * @Desc : https://docs-im.easemob.com/im/server/ready/sdk#%E5%87%86%E5%A4%87
 */
@Configuration
public class EmConfig {

    @Bean
    public EMService service() {

        EMProperties properties = EMProperties.builder()
                .setAppkey("AppKey")
                .setClientId("ClientID")
                .setClientSecret("ClientSecret")
                .build();

        return new EMService(properties);
    }
}

发送消息的代码

代码语言:javascript
复制
EMTextMessage emMessage = new EMTextMessage();
                    emMessage.text("您因:" + quickchatBanRecord.getBanReason() + ",被系统封停,封停至:" + new DateTime(quickchatBanRecord.getUnsealTime()) + " 如有疑问,请联系官方客服QQ:1834571998");
                    HashSet<String> hashSet = new HashSet();
                    hashSet.add(account);
                    MessageApi message = emService.message();
                    HashSet<EMKeyValue> ext = new HashSet<>();
                    EMKeyValue emKeyValue = EMKeyValue.of("ban", true);
                    EMKeyValue time = EMKeyValue.of("time", (quickchatBanRecord.getUnsealTime() - System.currentTimeMillis()) / 86400000);
                    ext.add(emKeyValue);
                    ext.add(time);
                    EMSentMessageIds users = message.send("6666", "users", hashSet, emMessage, ext).block(Duration.ofSeconds(3));

特殊说明: 解决问题的光鲜,藏着磕Bug的痛苦。 万物皆入轮回,谁也躲不掉! 以上文章,均是我实际操作,写出来的笔记资料,不会出现全文盗用别人文章!烦请各位,请勿直接盗用!

本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • SDK文档地址:https://docs-im.easemob.com/im/server/help/restastrict
    • Maven
      • 配置类
        • 发送消息的代码
        领券
        问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档