How to call a API Proxy inside my Java code.
For example. http://tapajyotigiri-eval-test.apigee.net/apitargetproxy this is an API Proxy which returns JSON. I want to get the JSON and display in Java.
Solved! Go to Solution.
You can use Java http client APIs to make calls to your API. One such widely used library is the Apache http client. You can use the Jackson or Google gson libraries to parse the json response.