1
vote
0answers
11 views

Rest philosophy for updating and getting records

In my app I'm displaying Race objects that essentially have three states: pending, inProgress and completed. I want to display all Races that are currently pending or inProgress, but not the ones that ...
1
vote
1answer
16 views

RESTful - Different URI of same resource to get different forms of same resource

I'm pushed into a peculiar situation where I'm not able to decide what is wrong and what is right. I've a resource called Invoice. To get a JSON or XML representation I use below URI ...
0
votes
0answers
9 views

Twitter REST API recursive search

i'm trying to get a recursive twitter search working, but after the first json response nothing happens. I have no idea why this is not working. http://jsfiddle.net/N6ED2/1/ function ...
0
votes
1answer
14 views

API-Centric design: How to minimize bandwidth costs provided by client side applications?

I have spend last few days studying about RESTful API in general using book such as O'really RESTful Web Services and, I also read stuff about API-centric design using tutorial such as creating an ...
0
votes
1answer
17 views

Httplib2 : Processing Response String

import httplib2 h = httplib2.Http(".cache") resp, content = h.request("http://example.org/", "GET") When I follow the examples in urllib2 to make a GET request to an API, how do I deserialize the ...
0
votes
2answers
14 views

GET request inside POST API endpoint interferes with 'respond_with'

After reading Stored Android Accounts for Authentication of Rails + Devise Accounts I'm trying to setup a Rails 3 API endpoint that can verify an OAuth obtained token through a GET request to Google. ...
0
votes
1answer
9 views

Restler 3 HTTPS issue?

So, I've just moved my project to a new server, and on this server i can access http://url/api/auth/login but I cannot access https://url/api/auth/login (I get a blank page :( So, it's ...
0
votes
0answers
11 views

How to update class parameters in Puppet Foreman?

I would like to be able to update the class parameters for a specific host through the foreman api. I can't seem to find a way to do this despite hours of google searching and trial/error. For ...
0
votes
3answers
35 views

What error code to return if user is over the API usage limit?

There are two limits for the API being considered: Daily limit. Concurrency limit. If the requests are not queued, what HTTP Response Code should be served? The two options so far seem to be 409 ...
0
votes
0answers
29 views

How to build API with keep-alive connection with PHP

I need to build a simple API with a keep-alive connection, where you only authenticate once and afterwards you can use the same connection with multiple actions/requests.. I have build a simple API ...
0
votes
1answer
10 views

how set ajax call by rest api parse.com

i'm new in rest api and i'm trying to use the api rest to associate file to object: curl -X POST \ -H "X-Parse-Application-Id: qS0KL*9lFLE**S3VMk" \ -H "X-Parse-REST-API-Key: nh3***MhcKJIfIt1Gm" ...
1
vote
1answer
47 views

Windows Azure REST API MediaLink

I'm trying to use the API REST of Windows Azure for creating a virtual machine deployment. However, I've got a problem when trying to specify an OS image in the following XML file: <Deployment ...
1
vote
0answers
11 views

Resolving an API's own hypermedia links

Let's say we have a RESTful API method: POST /people { "name" : "John", "_links" : { "address" : { "href" : "/addresses/2" } } } You can see that address has ...
0
votes
1answer
20 views

Salesforce: Any API for getting user information?

I am trying to find a way to get the information about the salesforce enterprise user from his auth_token. I want to find the username, email address and role(admin/user) from the auth-token. ...
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.). ...
0
votes
1answer
24 views

Data modelling for 'followers count' in MongoDB app with RESTful API

I have a User entity which has an array of other user IDs he/she is following. var userSchema = { following: { type: Array } }; I have a RESTful API, and when I request a User, my application ...
0
votes
1answer
40 views

Paypal REST API Bad Request

Trying to test Paypal payments via integration test in a grails project using Paypal sandbox. At this stage, I'm trying to create a Paypal payment using the REST API. code snippet: def ...
-1
votes
0answers
11 views

consuming NOVA REST API in ASP.NET

I have to consume external REST API in ASP.NET. This is the first time that i have to use it. Are there any tutorials through which i can learn. I would really appreciate if someone can guide me step ...
0
votes
0answers
19 views

Getting Price before sending Twilio message

I am using the Twilio .NET Helper Library and want to be able to determine the price of a call or SMS message before I actually send it. For example, if it is a SMS message that will go to a UK ...
0
votes
0answers
37 views

Reducing network roundrips using Neo4j Java REST wrapper

Context I'm running a Neo4j instance as a (remote) server. Periodically, I need to send a batch of new nodes to the database -- let's say about 5000 per batch, with 5-10 properties per node. I'm ...
1
vote
1answer
23 views

Authenticating Developers with APIKey and Users with BasicAuth/OAuth

I've looked around for this but can't seem to find a canonical answer. I'm trying to follow best practices. Maybe I'm thinking of it the wrong way. I'm thinking of my API users as two different ...
0
votes
1answer
18 views

How to model a global resource in a REST API?

REST seems to focus most on collections of resources -- lists of things. How should one model something that exists exactly once in a system? And more specifically something very simple. Suppose ...
1
vote
2answers
150 views

Consuming my own Laravel API

I'm developing a Laravel 4 app that will make the same CRUD operations on my dataset available through a JSON REST API and a Web UI. It seems that to prevent breaking the DRY principle that my UI ...
-1
votes
0answers
13 views

Javascript Library to Test API Endpoints

I am looking for a simple API for testing rest API. I would like to be able to keep the mocha and/or jasmine asserts structure, while chaining the API data, verb etc. api( '/maker' ) .put( ...
0
votes
1answer
78 views

CodeIgniter Rest API (Phil Sturgeon) - How to chop up a very large api file

I have been building a rest api (using Phil Sturgeons Codeigniter-Restserver) and Ive been sticking closely to the tutorial at: ...
1
vote
0answers
38 views

Make Servicestack's FacebookAuthProvider return AuthResponse

Is it possible to make ServiceStack's FacebookAuthProvider return AuthResponse instead of always returning HttpWebResponse. I've tried creating my own CustomFacebookAuthProvider and overriding ...
0
votes
1answer
37 views

Creating a Restlet Authorizer for fine grained authorization

I'm attempting to implement a RESTful API using Restlet and have found very little on anything more than the basic Role and Method Authorizers. I have stored in a database the routes and methods for ...
0
votes
0answers
19 views

Suggestions on API's for C++ with QtCreator

I'm trying to build an app that will act as a file storage and access client with DropBox API's or Ubuntu One API's. I'm looking for good tutorials on REST API's but redirected elsewhere. I'm using ...
0
votes
2answers
24 views

How to define an ID for a (RESTful) API?

For a system which as an internal identifier for a resource (like person_id), does it make sense to give direct API access callable on a different unique value (like licensee_id)? So would having ...
0
votes
0answers
89 views

Web API Authentication using facebook access token

The idea I'm working on an ASP.NET MVC 2 project, building a REST web API. It will be used as the backend of a mobile app (iOS and Android) and possibly in the future, of a facebook app and a ...
0
votes
1answer
18 views

Designing a Data-Driven JSON API

I'm currently working on an API that accepts a large batch of data and performs a few different kinds of analysis on the data. Rather than forcing clients to pass in their data once for each sort of ...
0
votes
2answers
41 views

Solving API Performance Issues with Cross Domain Ajax

I'm in the process of building out an infrastructure to support a gaming platform we intend to scale out to hundreds of thousands of users. Since this is in the entertainment / gaming industry, we are ...
1
vote
0answers
14 views

Twitter access token usage

I want to access twitter API on behalf of user. I'm a bit confused with Twitter access token usage. As I compare to Github API which is very easy to integrate with, I have accessToken which is simply ...
0
votes
2answers
72 views

How to implement a REST API that takes in a file along with other parameters

I have an api that will be accessed by a URI like this: POST: http://<domain>/app/rest/colors This post request will send some string parameters (i.e name: "red") along with a file. Ideally I ...
2
votes
0answers
36 views

Backbone models and URL exceptions

I have a Backbone model called User which has a urlRoot of /api/users. Thus, if I create a new model with an ID of 5, the url will be /api/users/5. I have also implemented another endpoint which is ...
-1
votes
0answers
24 views

cURL failing to authenticate

I'm transferring a website across to a new server, however I've found that any calls to the API we're using are failing? I can get calls to work by using the Firefox RESTclient but not on the new ...
6
votes
2answers
112 views

How to design a simple CRUD REST API

I'm designing a simple CRUD REST API. This is my first time so I wanted to get some feedback on whether my design makes sense. I'm utilizing the HTTP methods: GET, POST, DELETE, and UPDATE . The API ...
0
votes
1answer
24 views

Azure App Store

We are looking to go through the certification process and add an app to the Azure App Store. I have a few questions that you hopefully can answer that will increase my understanding how to implement ...
0
votes
1answer
13 views

REST API User Image Comment resource

Let's say I have these three resources: User, Image and Comment The comments belong to the image, not the user, but the user can make comments on an image. Now let's say I want to get all the images ...
0
votes
0answers
34 views

Django-Tastypie Return Multiple Object Types In A ModelResource Response

I'm trying to return multiple object types in a response. Specifically I would like to return the query that produced these results to the client. This is especially useful in say mobile applications, ...
0
votes
0answers
23 views

Where to distribute the HMAC Secret Key part?

So I'm currently in the process of developing an an app that will be cross-platform. For this reason I want the app to use an external database on a cloud service through a REST API build using the ...
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
vote
2answers
74 views

How to handle object ID's in ember.js?

I was just experimenting building a tiny app with Emberjs as my frontend framework. All the app is, is a list which I can add names to with a textbox and button, then remove names from the list by ...
0
votes
0answers
18 views

Yammer Downloading with access token unresponsive, issues 401 forbidden?

Hey guys I ran into a weird issue with trying to use the Yammer API's Download URL. Since this is an API call, you would think that you could just append your users access token to the end of the API ...
1
vote
1answer
91 views

What is an efficient way to create/manage RESTful API with grails?

I've built my first grails application. My URL mappings are what the default application provides: static mappings = { "/$controller/$action?/$id?"{ constraints { // apply ...
0
votes
0answers
33 views

How to communicate in core data with API using ID

At the moment I have a grails API. Now I'm using a name property form the template in combination with the current authenticated user using the authentication header, to do a get request. I understood ...
0
votes
2answers
47 views

SOQL Injection in SFDC

What is the best way to avoid SOQL Injection when querying salesforce through the APIs? The two main APIs I am interested in are the SOAP and REST APIs. My current methods are to never use any input ...
1
vote
1answer
25 views

Yammer API endpoint for Notes?

I've been trying to figure out what the endpoint is for capturing and posting Yammer Notes but am not able to find it, does anyone know what it is? I had originally though it was Notifications but ...
0
votes
2answers
28 views

Creating an index with REST API

I'm trying to create an index within a set under a specific namespace, but am unsure how to do it. My resources have this as an HTTP example: POST /example/v1/index/{namespace}/{set}/{indexName} ...
0
votes
0answers
16 views

Creating a customer api not working via yext

I am not able to add a new customer through Yext API. Below is the code snippet i am using to make the POST request. StringBuffer url = "https://api-sandbox.yext.com/v1/customers?api_key=xxx" ...

1 2 3 4 5 31