0

I have found this links How to send HTTP request GET/POST in Java , How to SEND HTTP request in JAVA

i understand this but this is from the client side , how it should be implemented in the server side ?

What is need is to use the link in the client side for example

http://linktomywebsite//(a parameter sent from each client)

and based on the parameter he gets response

  • This is a very broad question. I would research how to write an API, because that is what you would need to write to handle those requests – Grant C. May 23 '19 at 04:09

1 Answers1

0

I would suggest that you start learning how to create REST APIs with Java Servlets. It will help you understand exactly how the server side works. Here’s a step by step example https://www.theserverside.com/video/Step-by-step-RESTful-web-service-example-in-Java-using-Eclipse

Dave
  • 15
  • 1
  • 6