The api-design tag has no wiki summary.
1
vote
1answer
18 views
How to model a REST API with “POST to PUT redirect”?
I'm creating a REST API for a backup service, which in principle is quite simple:
a user is identified by some uid;
files are identified by some fid;
to upload a file, the user POSTs a file to ...
0
votes
2answers
29 views
How to pass an arbitrary number of parameters while adhering to REST principles
I have a database with 3 tables: product, category, and xref_product_category. My business logic permits a product to be associated with an arbitrary number of categories (bed, bath, kitchen, etc.). ...
2
votes
2answers
45 views
REST API Design sending JSON data and a file to the api in same request
I am creating a REST API on top of an existing application. One of the features takes in a json data along with a file uploaded by the user.
I am unsure how to send a file AND json data in the same ...
4
votes
2answers
68 views
Why does the Object class have Thread methods? [duplicate]
Why does the Object class have thread-related methods, like wait(), notify(), notifyAll()?
We need to extend Thread or implement Runnable to give Thread-like behavior to a class. So why weren't they ...
0
votes
2answers
32 views
API design choice - namespaces in XML interface
I'm designing a new API and I'm struggling with some decisions. I've read tons of blogs on SOAP vs REST and I used the popular APIs (Paypal, Amazon, etc.) as my guidelines.
I ended up with 2 ...
-1
votes
2answers
49 views
Why does the jQuery library expose DOM elements?
This is a question about the design of the jQuery API, not specifics of usage.
Why is a jQuery object a collection of DOM elements and not a collection of jQuery objects?
Working with only jQuery ...
0
votes
1answer
37 views
Monolithic Methods - Disadvantages
Let's say I am creating a MATH class and need to provide a method to process two numbers. [
Instead of providing the traditional mechanism of have methods for each possible operation I provide a ...
1
vote
5answers
84 views
REST API Design Guideline
I am in the process of designing a public API for our REST interface. One of the thing's that came up was the use of the http verbs, specifically the DELETE verb.
We want to expose methods to ...
5
votes
2answers
44 views
How should exceptions be handled in a RESTful API for collection results?
We are designing a RESTful API to return collections of documents. Our initial implementation uses HTTP status codes to indicate if a request could not be fulfilled. This seems to be a widely ...
2
votes
2answers
63 views
semantic versioning of API bundle
When starting with a package versioned at 1.0.0 in an API bundle, what should the new version be after adding a new interface to said package? The whitepaper makes this statement regarding ...
0
votes
0answers
52 views
Reusing Runnable in single threaded app
I have some interfaces that hides from me things like web-server/OSGi/JMS. For that thing I clearly see construction and running phases. I see several approaches about this in code.
mix ...
0
votes
2answers
81 views
RESTfully creating object graphs
I'm trying to wrap my head around how to design a RESTful API for creating object graphs. For example, think of an eCommerce API, where resources have the following relationships:
Order (the main ...
0
votes
1answer
31 views
Api URI Design Preference
A quick api uri design question. We have resources that belong to our clients. These resources can be edited / viewed / deleted by the client who entered them into our system. The resources can be ...
2
votes
2answers
60 views
Is it bad to have “specifications” for a controller/method specified in routing code?
I'm designing an alternative MVC framework for ASP.Net. Part of my goals for the framework is to have as little "magic" as possible. The only bit of reflection I have is for binding things like form, ...
0
votes
1answer
86 views
How do I design my Node.js API so that I can also consume it from the server side?
I have an API that returns some JSON from mongodb:
// In router.js
var api = require('api')
app.get('/lists', api.lists);
// In api.js
var db = require('db')
exports.lists = function(req, res) {
...
1
vote
0answers
84 views
Should a replacement for a deprecated delegate method fall through to the old version?
I have a proper delegate protocol created in Objective-C and I'm updating it. One of the updates requires a method be deprecated, but it is technically still valid for the time being.
Here is the ...
3
votes
1answer
56 views
Wrapper's parseXXX() for signed binary misunderstanding
Let's take Byte.parseByte() as an example as one of the wrappers' parseXXX().
From parseByte(String s, int radix)'s JavaDoc:
Parses the string argument as a signed byte in the radix specified by
...
4
votes
2answers
77 views
Should I write tests before they will compile? [closed]
I've been trying to follow a loose TDD workflow for one of my open source projects. It's an API for other programmers to use.
As such, one key aspect as well as making the API "work" is also ...
0
votes
1answer
46 views
Rest api - adding tags to an entity
I am designing a rest api in which I need to add tags to an entity. The entity is created using POST /content where the json data is passed in the request body. I want to allow adding tags while the ...
1
vote
1answer
31 views
API Design - Ordering return data in an array
I currently have an API endpoint which returns an array of objects each containing 4 variables in JSON format.
The size of the data ranges from 500kb to 5mb - depending on the number of records. In ...
0
votes
0answers
29 views
Are there any caching issues with legacy components and the vary http header
I'm considering the design of a ReST service where resources can be served with multiple representations.
My preferred method of doing this is for client to make a request with appropriate Accept ...
1
vote
3answers
267 views
iOS consuming API design
I am going to develop an iOS app for a web application. (The web app uses code igniter)
I am going to create an API Service that the iOS app will consume.
I am thinking of creating an api version, ...
6
votes
3answers
388 views
Designing an API with designated client keys
I'm designing a JSON web API and want to distinguish clients by unique IDs, in order to monitor usage and block malicious/misbehaving clients. The API is NOT encapsulated in a JavaScript library and ...
4
votes
3answers
262 views
REST API Design regarding DELETE method
I'm building a REST API. actually I understand the the common guide and rule.
But i have issue with DELETE method, because I need to send the data over the body in the request, which DELETE method ...
7
votes
3answers
92 views
(start, end) vs. (start, length) in API design
I've seen two alternative conventions used when specifying a range of indexes, e.g.
subString(int startIndex, int length);
vs.
subString(int startIndex, int endIndex);
They are obviously ...
0
votes
0answers
51 views
Passing the right parameters to variable methods in PHP
I'm setting up a PHP API that will expose functionality and vend data to my users, and I'm looking for an elegant way of passing to my functions the arguments that my users are "passing" to me. I can ...
17
votes
5answers
1k views
API pagination best practices
I'd love some some help handling a strange edge case with a paginated API I'm building.
Like many APIs, this one paginates large results. If you query /foos, you'll get 100 results (i.e. foo #1-100), ...
2
votes
2answers
57 views
Should a ReST API silently ignore request to change nonexistent field?
Consider a ReST API which provides an interface to a database.
Should a the server respond with an HTTP 400 Bad Request on a PUT or PATCH request which attempts to specify a new value for a column ...
0
votes
3answers
68 views
RESTful design: Should renamed resources block old URIs forever?
I'm trying to understand RESTful Web Services page 274 section HTTP PUT. Issuing PUT against a non-existent resource creates the resource. If PUT causes an existing resource to move, HTTP 301 (Moved ...
3
votes
2answers
195 views
RESTful design: when to use sub-resources?
When designing resource hierarchies, when should one use sub-resources?
I used to believe that when a resource could not exist without another, it should be represented as its sub-resource. I ...
2
votes
1answer
593 views
Applying LIMIT and OFFSET to all queries in SQLAlchemy
I'm designing an API with SQLAlchemy (querying MySQL) and I would like to force all my queries to have page_size (LIMIT) and page_number (OFFSET) parameters.
Is there a clean way of doing this with ...
1
vote
1answer
91 views
Representing local timestamps in Ruby based REST API
Perhaps this question should be broken up into two posts, but I currently have an API for a few business customers. I am currently using ISO 8601 timestamps with a UTC time zone to represent times. ...
0
votes
2answers
156 views
How should I expose a generic List<T> as a property in a .NET API when the property can legitimately be null?
I am trying to create a .NET API which wraps and interfaces with a third-party C API. As such the semantics of the API are as follows:
There is a property which represents a list of strings in a ...
3
votes
3answers
95 views
How can I create this API with JavaScript and break out the methods
Let's say I wanted to have this API for an example to do app:
var db = new Database('db-name'); // DB connection
var todo = new Todo(db); // New "Todo" and pass it the DB ref
// I want this API:
...
0
votes
1answer
166 views
Pure HATEOAS vs making too many service calls
I am trying to build a RESTful web service which is supposed to power my UI. If I go by pure HATEOAS principles, I should only be exposing URIs of individual resources in collections. Now, say I have ...
0
votes
1answer
24 views
Libraray/Toolkit API: How to handle composition when containing objects are not known
Could not think of a good title.
I'm creating a library / toolkit for storing and searching a special kind of data (does not really matter to the question but it's chemical structures) in a database. ...
3
votes
2answers
129 views
Marker interface or boolean method to identify object capabilities?
I am developing a largish hierarchy of Java classes, some of which have a particular property that I am interested in querying at runtime (the property definitely only applies to classes, not specific ...
2
votes
1answer
45 views
REST API “Nothing to do” response
I have an API where a put request may not result in changes to the underlying data. If this occurs, I am sending back a 200 and the ETag remains the same as it was if nothing happened. The client, ...
2
votes
2answers
183 views
Rest api design: POST to create with duplicate data, would-be IntegrityError/500, what would be correct?
I have a normal, basic REST api like:
/
GET - list
POST - create
/<id>
GET - detail
PUT - replace
PATCH - patch
DELETE - delete
When a POST comes in to /, I usually ...
0
votes
1answer
162 views
How “store” REST archetype isn't creating a new resource and a new URI?
REST API design indicates there are four resources archetypes: document, collection, store and controller.
Store do not create new resources; therefore a store never generates new URIs.
An ...
5
votes
0answers
301 views
CXF REST APIs Documentation using Swagger
According to Swagger's tutorial, seems swagger only support Jersey framework. https://github.com/wordnik/swagger-core/wiki/java-jax-rs
If anybody have experience on making swagger work with cxf rest? ...
4
votes
1answer
319 views
Good Node definition for ordered tree in C++
I have a rooted ordered tree representing sets of integers. Each node stores the size of the associated subtree, and also the max and min elements in this subtree. The branch degree of all the nodes ...
0
votes
2answers
74 views
How to invoke an api method from different packages with no extra dependency?
Assume:
I have a Java/Android modular library that can setup like this:
package com.mycorp.app.sample.integration;
public class ModuleConnector {
public static final LogcatLogger LOGCAT_LOGGER ...
0
votes
1answer
73 views
How to make two related package independent from each other in a Java/Android modular library?
Assume:
A simple modular java library has only two module:
package com.mycorp.lib.logger;
public class LogcatLogger implements Logger {
@Override
public void out(LogcatLogger.LogMessage ...
5
votes
8answers
283 views
Why does ICollection not contain an Add method? [closed]
As in the title, does anyone know why the ICollection interface does not contain an Add method? It seems very odd that the generic version, ICollection<T>, has an Add but ICollection does not. ...
6
votes
3answers
261 views
“Program to an interface” using extension methods: When does it go too far?
Background: In the spirit of "program to an interface, not an implementation" and Haskell type classes, and as a coding experiment, I am thinking about what it would mean to create an API that is ...
2
votes
1answer
142 views
Refactoring WCF Service
I had to recently add a new feature to to an existing application I wrote and looking at this section of code realized it might be time to refactor and improve.
Original Index Method:
...
0
votes
1answer
270 views
comparing strategies to avoid flash of unstyled content (fouc)
I need to control CSS with a cookie:
When the user chooses a style through a control I include on all of the pages, that setting needs to persist until the user changes it or the cookie expires
The ...
7
votes
7answers
161 views
Creating property which may throw IndexOutOfRangeException
I have a class containing a collection of items. For convenience I've provided GetCurrentItem which is implemented by
public Type GetCurrentItem
{
get { return this.items[this.items.Count - 1]; ...
1
vote
0answers
136 views
API design: Better to wrap IKVM java.util.Set in a .NET 4 ISet?
I'm exposing a Java library I wrote to .NET using IKVM, which compiles Java bytecode to CLR bytecode. This works great, and my question has to do with API design. My API is very simple and small. The ...
