Representational state transfer (REST) is a style of software architecture for distributed hypermedia systems such as the World Wide Web. It has increased in popularity relative to RPC-based architectures such as SOAP due to the intrinsic de-coupling of client from server that comes from having a ...
860
votes
14answers
231k views
PUT vs POST in REST
According to the HTTP/1.1 Spec:
The POST method is used to request that the origin server accept the entity enclosed in the request as a new subordinate of the resource identified by the ...
126
votes
11answers
48k views
HTTP GET with request body
I'm developing a new RESTful webservice for our application.
When doing a GET on certain entities, clients can request the contents of the entity.
If they want to add some parameters (for example ...
224
votes
5answers
101k views
REST / SOAP endpoints for a WCF service
I have a WCF service and I want to expose it as both a RESTfull service and as a SOAP service.
Anyone has done something like this before?
111
votes
10answers
46k views
Restful API service
I'm looking to make a service which I can use to make calls to a web based rest api. I've spent a couple of days looking through stackoverflow.com, reading books and looking at articles whilst ...
144
votes
10answers
55k views
RESTful Authentication
What does RESTful Authentication mean and how does it work. I can't find a good overview on google. My only understanding is that you pass the session key (remeberal) in the URL, but this could be ...
278
votes
6answers
48k views
Best practices for API versioning? [closed]
Are there any known howtos or best practices for web service REST API versioning?
I have noticed that AWS does versioning by the URL of the endpoint. Is this the best way?
294
votes
10answers
101k views
Best Practices for securing a REST API / web service
When designing a REST API or service are there any established best practices for dealing with security (Authentication, Authorization, Identity Management) ?
When building a SOAP API you have ...
224
votes
16answers
91k views
Recommendations of Python REST (web services) framework? [closed]
Is there a list somewhere of recommendations of different Python-based REST frameworks for use on the serverside to write your own RESTful APIs? Preferably with pros and cons.
Please feel free to add ...
185
votes
23answers
30k views
SOAP or REST for Web Services?
Is REST a better approach to doing Web Services or is SOAP? Or are they different tools for different problems? Or is it a nuanced issue - that is, is one slightly better in certain arenas than ...
474
votes
12answers
66k views
What exactly is RESTful programming?
What exactly is RESTful programming?
Don't give me links to wikipedia please, I'm hoping for a straight-forward answer, not some BUZZ-word-ful answer.
Bonus question: Should I feel stupid because I ...
65
votes
13answers
65k views
Rest clients for Java?
With JSR 311 and it's implementations we have a powerful standard for exposing Java objects via Rest. However on the client side there seems to be something missing that is comparable to Apache Axis ...
97
votes
11answers
55k views
Best Framework for PHP and creation of RESTful based web services [closed]
I'm looking to create a RESTful or pseudo-Restful based web service on a PHP/MySql stack. I'm wondering what some of the frameworks you suggest I look at?
I've been looking at Zend with Zend_Rest, ...
48
votes
5answers
48k views
How to Consume WCF Service with Android
I am creating a server in .NET and a client application for Android. I would like to implement an authentication method which sends username and password to server and a server sends back a session ...
66
votes
6answers
107k views
How to post JSON to PHP with curl
I may be way off base, but I've been trying all afternoon to run the curl post command in this recess PHP framework tutorial. What I don't understand is how is PHP supposed to interpret my POST, it ...
204
votes
9answers
57k views
REST and SOAP
Can somebody explain what is REST and what is SOAP in plain english? And how Web Services work?
182
votes
9answers
21k views
Understanding REST: Verbs, error codes, and authentication
I am (as a follow-up to this question) looking for a way to wrap APIs around default functions in my PHP-based web applications, databases and CMSs.
I have looked around and found several "skeleton" ...
43
votes
6answers
14k views
How to version REST URIs
What is the best way to version REST URIs? Currently we have a version # in the URI itself, ie.
http://example.com/users/v4/1234/
for version 4 of this representation.
Does the version belong in ...
82
votes
4answers
20k views
Is an entity body allowed for an HTTP DELETE request?
When issuing an HTTP DELETE request, the request URI should completely identify the resource to delete. However, is it allowable to add extra meta-data as part of the entity body of the request?
27
votes
3answers
38k views
How do I make a request using HTTP basic authentication with PHP curl?
I'm building a REST web service client in PHP and at the moment I'm using curl to make requests to the service.
How do I use curl to make authenticated (http basic) requests? Do I have to add the ...
203
votes
2answers
67k views
PHP detecting request type (GET, POST, PUT or DELETE)
How can I detect which request type was used(GET, POST, PUT or DELETE) in php?
107
votes
10answers
45k views
Modify Address Bar URL in AJAX App to Match Current State
I'm writing an AJAX app, but as the user moves through the app, I'd like the URL in the address bar to update despite the lack of page reloads. Basically, I'd like for them to be able to bookmark at ...
27
votes
7answers
49k views
Using JAXB to unmarshal/marshal a List<String>
I'm trying to create a very simple REST server. I just have a test method that will return a List of Strings. Here's the code:
@GET
@Path("/test2")
public List test2(){
List list=new ...
15
votes
2answers
5k views
servicestack REST API and CORS
Anyone know if the servicestack framework can be used to create CORS REST services?
I've been banging my haed against the WCF REST stuff for days now - utterly useless.
Thanks
106
votes
5answers
33k views
REST HTTP status codes
I'm building an application with a REST-based API and have come to the point where i'm specifying status codes for each requests.
What status code should i send for requests failing validation or ...
41
votes
4answers
24k views
REST API - why use PUT DELETE POST GET?
So -i was looking through some articles on creating REST API's.
And some of them suggest using all types of HTTP requests: like PUT DELETE POST GET.
So - we would create for example index.php and ...
41
votes
11answers
35k views
WSDL vs REST Pros and Cons
Related:
Why would one use REST instead of Web services?
When deciding whether to implement a web service using SOAP or REST (by which I mean HTTP/XML in a RESTful manner) what should I be aware ...
147
votes
9answers
13k views
Pagination in a REST web application
This is a more generic reformulation of this question (with the elimination of the Rails specific parts)
I am not sure how to implement pagination on a resource in a RESTful web application.
Assuming ...
148
votes
9answers
45k views
How to create REST URLs without verbs?
I'm struggling to determine how to design restful URLs. I'm all for the restful approach of using URLs with nouns and not verbs don't understand how to do this.
We are creating a service to ...
109
votes
8answers
26k views
RESTful URL design for search
I'm looking for a reasonable way to represent searches as a RESTful URLs.
The setup: I have two models, Cars and Garages, where Cars can be in Garages. So my urls look like:
/car/xxxx
xxx == car ...
90
votes
11answers
24k views
Why would one use REST instead of Web services?
Attended an interesting demo on REST today, however, I couldn't think of a single reason (nor was one presented) why REST is in anyway better or simpler to use and implement than a Web Services stack.
...
18
votes
4answers
23k views
Objective-C: Best way to access REST API on your iphone
been wrestling with this for some time. I am trying to access a REST api on my iphone and came across the ASIHTTP framework that would assist me. So i did something like
//call sites, so we can ...
29
votes
15answers
13k views
Is it feasible to create a REST client with Flex?
I'm starting a project using a Restful architecture implemented in Java (using the new JAX-RS standard)
We are planning to develop the GUI with a Flex application. I have already found some problems ...
17
votes
4answers
21k views
Detecting the character encoding of an HTTP POST request
I'm building a web service and have a node that accepts a POST to create a new resource. The resource expects one of two content-types - an XML format I'll be defining, or form-encoded variables.
...
2
votes
2answers
2k views
Using jqGrid's inline-editing with RESTful urls?
I'm using jqGrid and would like to be able to use its built-in editing functions to make ajax calls to add/edit/delete. Our API uses RESTful verbs and urls like so:
verb url action
...
91
votes
6answers
52k views
Security of REST authentication schemes
Background:
I'm designing the authentication scheme for a REST web service. This doesn't "really" need to be secure (it's more of a personal project) but I want to make it as secure as possible as an ...
88
votes
5answers
11k views
Can you help me understand this? “Common REST Mistakes: Sessions are irrelevant”
Disclaimer: I'm new to the REST school of thought, and I'm trying to wrap my mind around it.
So, I'm reading this page, Common REST Mistakes, and I've found I'm completely baffled by the section on ...
76
votes
7answers
56k views
HTTP POST with URL query parameters — good idea or not?
I'm designing an API to go over HTTP and I am wondering if using the HTTP POST command, but with URL query parameters only and no request body, is a good way to go.
Considerations:
"Good Web ...
13
votes
7answers
3k views
What am I not understanding about REST?
I'm building a framework and want developers who build with it to have the ability to allow parts of it to both share data with other sites and allow other sites to add/edit/delete data.
For example, ...
5
votes
2answers
6k views
How to set Json.Net as the default serializer for WCF REST service
Is it possible to override the default WCF DataContractSerializer behaviour when Serialize/DeSerialize entities and use JSON.NET instead?
I have the following service contract for handling the City ...
137
votes
8answers
30k views
REST API error return good practices
I'm looking for guidance on good practices when it comes to return errors from a REST API. I'm working on a new API so I can take it any direction right now. My content type is XML at the moment, but ...
109
votes
8answers
38k views
REST API Best practices: Where to put parameters?
A REST API can have parameters in at least two ways:
As part of the URL-path (i.e. /api/resource/parametervalue )
As a query argument (i.e. /api/resource?parameter=value )
What is the best ...
72
votes
6answers
41k views
JAX-RS / Jersey how to customize error handling?
I'm learning JAX-RS (aka, JSR-311) using Jersey. I've successfuly created a Root Resource and am playing around with parameters:
@Path("/hello")
public class HelloWorldResource {
@GET
...
72
votes
5answers
69k views
Capturing url parameters in request.GET
I am currently defining regular expressions in order to capture parameters in a url, as described in the tutorial. How do I access parameters from the url as part the HttpRequest object? My ...
44
votes
6answers
22k views
RESTful on Play! framework
We are planning a project primarily serving content to mobile apps, but need to have a website.
My question is whether is makes sense to use Jersey or Restlet to develop REST APIs for our mobile ...
33
votes
5answers
21k views
Android REST client, Sample?
Even if this thread has accepted answer, feel free to propose other ideas, you do use or like
I've met these articles:
Restful API service
Java REST client API for Android
And that lead me to ...
33
votes
5answers
10k views
What are the best/common RESTful url verbs and actions?
I'm trying to find some info on the best and most common RESTful url actions.
for example, what url do you use for displaying the details of an item, for editing the item, updating, etc.
...
49
votes
21answers
35k views
Testing REST webservices
My organization is working on building RESTful webservices on JBoss appserver. The QA team is used to testing SOAP webservices so far using SoapUI. SoapUI has a new version that has REST capabilities. ...
38
votes
5answers
37k views
Javascript/jquery to download file via POST with JSON data
I have a jquery-based single-page webapp. It communicates with a RESTful web service via AJAX calls.
I'm trying to accomplish the following:
Submit a POST that contains JSON data to a REST url.
If ...
34
votes
7answers
13k views
REST Content-Type: Should it be based on extension or Accept header?
Should the representation(html, xml, json) returned by a RESTful web service be determined by the url or by the Accept HTTP header?
15
votes
9answers
7k views
Is there a webservice/API to grab a screenshot of another website? [closed]
I'm writing a webapp where I want to display screenshots of other websites. Is there any free service out there that does this? I'm thinking something RESTful, for example if I wanted to get a ...