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

io.github.dabogadog.apiProfiling.ApiProfiling Maven / Gradle / Ivy

package io.github.dabogadog.apiProfiling;

import io.github.dabogadog.httpUtils.ApiConfig;
import io.github.dabogadog.httpUtils.HttpUtils;


public class ApiProfiling {

    public static String obtainApiProfiling(String sessionId, String autorizacion) {

            // Construir el URL completo utilizando la URL base de la API de ApiConfig
            String url = ApiConfig.BASE_URL
                    + sessionId + ApiConfig.PARAMS_APIPROFILING;

            // Realizar la solicitud HTTP utilizando HttpUtils
            return HttpUtils.sendHttpGetRequest(url, autorizacion);
        }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy