All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.larksuite.oapi.core.api.Api Maven / Gradle / Ivy

Go to download

Larksuite open platform facilitates the integration of enterprise applications and larksuite, making collaboration and management more efficient

There is a newer version: 1.0.18-rc8
Show newest version
package com.larksuite.oapi.core.api;

import com.larksuite.oapi.core.Config;
import com.larksuite.oapi.core.Context;
import com.larksuite.oapi.core.api.handler.Handler;
import com.larksuite.oapi.core.api.request.Request;
import com.larksuite.oapi.core.api.response.Response;

public class Api {
    public static  Response send(Config config, Request request) throws Exception {
        Context context = new Context();
        config.withContext(context);
        request.withContext(context);
        Handler.DEFAULT.handle(context, request);
        return request.getResponse();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy