I Developed a REST Service in Jax-RS, and I have some functions that use the POST method, like:
- Auth_User()
- Get_List()
- Insert_Data(id,name,data)
I need to access these functions using PHP cURL. What I basically need is to work the functions from the PHP files, so that my REST Service can work like Facebook App development.
how can I do this using cURL?