duanhuang2150 2011-01-26 17:41
浏览 75
已采纳

如何使用PHP访问Jax-RS中的REST服务

I Developed a REST Service in Jax-RS, and I have some functions that use the POST method, like:

  1. Auth_User()
  2. Get_List()
  3. 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?

  • 写回答

2条回答 默认 最新

  • dse3168 2011-01-26 17:50
    关注

    You can use the CURL library with it's wide range of options to perform GET/POST/HEAD etc. requests that you would need to communicate with your REST server.

    As for parsing data, you would have to take a look at either json_decode() if you get json objects back, or e.g. SimpleXml if you need to parse it as XML.

    See this site here for a decent example of querying the yahoo REST api in php/curl:

    http://developer.yahoo.com/php/tutorials/water_bug_tutorial-making_rest_request.html

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?