Tagged Questions

3
votes
1answer
511 views

Symfony routing with an API Web Service

I'm finishing the API of our web service. Now I'm thinking on how to make the route changes, so if we decide to make a new version we don't break the first API. right now: url: /api/:action param: { ...
3
votes
3answers
845 views

MapQuest API: Any reason to use it over Google Maps?

So I've been looking into the different mapping API's out there, and I've narrowed it down to Google Maps API and MapQuest's API. I'm leaning towards the MapQuest API for: Unlimited queries Support ...
2
votes
1answer
325 views

MVC3 RESTful API Routing & Http Verb Handling

I want to build a RESTful Json Api for my MVC3 application. I need help with handling multiple Http Verbs for the manipulation of a single object instance. What I've read/studied/tried MVC ...
2
votes
1answer
57 views

API's version of a resource URL

I have those API's routes: Fuu::Application.routes.draw do scope(:module => 'api', :defaults => {:format => 'json'}) do namespace('v1') do get 'welcome' => 'welcomes#index' ...
1
vote
0answers
24 views

How to redirect request to another namespace

What's the best way to forward all unhandled requests within a namespace to another namespace, while preserving the format of the original request? namespace :api do namespace :v1 do ... end ...
1
vote
3answers
1k views

PHP REST API Routing

I have been looking at APIs and developing a REST API for a project that we are working on. The API only accepts connections from one source in JSON format, I understand that bit fine. I have been ...
1
vote
0answers
198 views

Rails 3 - what's the best way to implement an application API? [closed]

Possible Duplicate: Howto change view format based on domain name I have an application that currently runs on site.com (for example), and responds to HTML, json, XML etc. What would be ...
1
vote
2answers
2k views

How do i do geocoding and routing with OpenStreetMap?

Because Google Maps API is not available in Israel (see here) I want to use OpenStreetMap. I'm confused by all the different ways to do geocoding, i.e. finding lat,long for an address. I'm also ...
1
vote
6answers
244 views

Moving the :format attribute in routing from the end to beginning of route

In my application, I am trying to get my API to mimic GitHub's in how it has the (.:format) in the beginning of the route rather than appending it optionally at the end. Here is my code that is ...
0
votes
1answer
33 views

Rails and Devise - Namespace is Uninitialised Constant

I am trying to use namespaces to declare an api. My routes.rb contains: devise_scope :user do namespace :api do namespace :v1 do match 'log_in', :to => ...
0
votes
1answer
22 views

RoR XML API says route not found. manually adding route doesn't help. What am I doing wrong?

The command I'm trying to execute from the terminal: curl "http://acme.example.com/controller_name/destroy.xml?api_key=123&id=150&other_id=430" Just a simple GET request, nothing special ...