简体   繁体   中英

Is it possible to create a client in PHP for Restlet?

Im developing a java application that provides some methods using restlet to a android app.

I created the server and the client using this tutorial (GAE server and Android client)

Now I need to make a PHP client that is able to access that data. Is that possible? What is the best way to do it?

I already tried to get the data using Advanced REST client but restlet always provide a 404 error

Edit: I can use any web language, PHP was used as an example

I ended up using a restlet extension

I hope it helps somebody else ;)

Restlet provides a way to implement RESTful applications. They are independent from the client so you should be able to consume them with any language.

I would recommend you to enable traces on the server side to find out what happens:

Engine.setLogLevel(Level.FINEST);

You can try to use curl to have a low-level view of exchanged messages (address / path, headers and payload).

Hope it helps you, Thierry

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM