Giter VIP home page Giter VIP logo

jivo-lib's Introduction

jivo-lib

Add to your project

See releases

How to use

Create new EventManager

    EventManager eventManager = new EventManager();

Make your impllementation of EventListener(for example EventListenerImpl):

public class EventListenerImpl implements EventListener{
    @Override
    public void updateReceived(Update update) {
        ClientMessage clientMessage = update.getClientMessage();
        JivoService jivoService = update.getJivoService();

        Message message = clientMessage.getMessage();
        String text = message.getText();

        Message newMessage = new MessageText();
        newMessage.setText(text);

        BotMessage botMessage = new BotMessage(clientMessage.getClient_id(), clientMessage.getChat_id(), newMessage);

        try{
            jivoService.sendBotMessage(botMessage);
        }catch (Exception exception){
            exception.printStackTrace();
        }
    }
}

Add your listener to EventManager

eventManager.addListener(new EventListenerImpl());

Create new JivoBotApplication

JivoBotApplication jivoBotApplication = new JivoBotApplication(eventManager,8080,"provider_id/your_token");

How i can get my token?

  1. Сome up with your own unique token for the bot
  2. Go to JivoWebSite and register
  3. Go to Jivo Bot Api page
  4. Write to Jivo that you are creating your bot ,and you need provider id.
  5. Follow instructions.
  6. If you have any questions, ask them in the chat on Jivo website.
  7. At the end, you have provider id and your bot token. Enter "your_provider_id/your_bot_token" in JivoBotApplication constructor.

jivo-lib's People

Contributors

fixess avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

jivo-lib'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.