Answer by weteamsteve for API Versioning for Rails Routes
Implemented this today and found what I believe to be the 'right way' on RailsCasts - REST API Versioning. So simple. So maintainable. So effective.Add lib/api_constraints.rb (don't even have to change...
View ArticleAnswer by Amed R for API Versioning for Rails Routes
Ryan Bigg answer worked for me.If you also want to keep query parameters through the redirect, you can do it like this:match "*path", to: redirect{ |params, request|...
View ArticleAnswer by aantix for API Versioning for Rails Routes
I'm not a big fan of versioning by routes. We built VersionCake to support an easier form of API versioning. By including the API version number in the filename of each of our respective views...
View ArticleAnswer by Brian Ploetz for API Versioning for Rails Routes
I'm not sure why you want to redirect to a specific version if a version isn't explicitly requested. Seems like you simply want to define a default version that gets served up if no version is...
View ArticleAnswer by David Bock for API Versioning for Rails Routes
If at all possible, I would suggest rethinking your urls so that the version isn't in the url, but is put into the accepts header. This stack overflow answer goes into it well:Best practices for API...
View ArticleAnswer by pixeltrix for API Versioning for Rails Routes
A couple of things to add:Your redirect match isn't going to work for certain routes - the *api param is greedy and will swallow up everything, e.g. /api/asdf/users/1 will redirect to /api/v2/1. You'd...
View ArticleAnswer by Ryan Bigg for API Versioning for Rails Routes
The original form of this answer is wildly different, and can be found here. Just proof that there's more than one way to skin a cat.I've updated the answer since to use namespaces and to use 301...
View ArticleAPI Versioning for Rails Routes
I'm trying to version my API like Stripe has. Below is given the latest API version is 2./api/users returns a 301 to /api/v2/users/api/v1/users returns a 200 of users index at version 1/api/v3/users...
View Article