Can we use ECMA script to fetch an API endpoint? | Community
Skip to main content
This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by EstebanBustamante

Hi, 

Yes, you could do something like the code below, but I would recommend using a Java process instead and utilizing any HTTP client that would most likely be used across your implementation.

var get = new org.apache.commons.httpclient.methods.GetMethod("https://www.google.com"); var client = new org.apache.commons.httpclient.HttpClient(); var status = client.executeMethod(get); log.info("******** status " + status); get.releaseConnection();

 

Hope this helps.

2 replies

EstebanBustamante
Adobe Champion and Community Advisor
EstebanBustamanteAdobe Champion and Community AdvisorAccepted solution
Adobe Champion and Community Advisor
April 3, 2024

Hi, 

Yes, you could do something like the code below, but I would recommend using a Java process instead and utilizing any HTTP client that would most likely be used across your implementation.

var get = new org.apache.commons.httpclient.methods.GetMethod("https://www.google.com"); var client = new org.apache.commons.httpclient.HttpClient(); var status = client.executeMethod(get); log.info("******** status " + status); get.releaseConnection();

 

Hope this helps.

Esteban Bustamante
thatsmeadarsh
Level 3
April 4, 2024

Thanks Esteban this helps a lot.