Code Monkey home page Code Monkey logo

openim-java-sdk's Introduction

openim-sdk

openim api java调用sdk 无spring版

目的:

  • 实现一套openim的java版sdk,方便java快速集成开发

参考

使用

  • 1 maven引入依赖包
<dependency>
    <groupId>cn.org.opendfl</groupId>
    <artifactId>openim-java-sdk</artifactId>
    <version>0.6-springboot2</version>
</dependency>
  • 2 openim配置
openim:
  api: http://openim-web.host.fit
#  下面可以不配置,默认按以下规则生成
#  apiApi: http://openim-web.host.fit/api
#  apiChat: http://openim-web.host.fit/chat
#  apiAdmin: http://openim-web.host.fit/complete_admin
  secret: openIM123
  adminAccount: openIMAdmin
  adminPwd: openIMAdmin
  #预留功能,支持每个请求,自动带个header authKey参数
  authKey: authKey
  #是否校验请求参数
  requestParamValid: true
  • 3 调用示例
private OpenImService openImService = new OpenImService();
public void login(){
    String operationId = IdUtil.fastUUID();
    LoginReq loginReq = new LoginReq();
    loginReq.setAccount("openIMAdmin");
    loginReq.setPassword("de84e3477e4fcddc54c9bfbeac4aca2d");
    OpenImResult<AdminLoginResp> result = openImService.admin().user().login(loginReq, operationId);
}

public void getClientConfig() {
    OpenImResult<GetClientConfigResp> result = openImService.admin().clientConfig().getClientConfig(openImToken);
    System.out.println(JSONUtil.toJsonStr(result));
    TestCase.assertTrue(result.getErrMsg(), result.isOk());
}

openim-java-sdk's People

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar

Forkers

zhyf918

openim-java-sdk's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.