Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 59135
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T17:57:28+00:00 2026-05-10T17:57:28+00:00

Rails comes with RESTful resources out of the box, but do you use those

  • 0

Rails comes with RESTful resources out of the box, but do you use those for your actual public API? If so, how would you accomplish versioning of your API i.e. example.com/api/v2/foo/bar?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-10T17:57:28+00:00Added an answer on May 10, 2026 at 5:57 pm

    Typically, APIs for my applications are indeed built on the same resources that make up the HTML interface. For some (not me), that might be just using the code that comes out of the scaffold generator—but regardless of whether I write it custom or let the generator handle it, there are very few instances where I expose resources only to the programmatic API and not to the end user view.

    Versioning hasn’t been a problem for the applications I’ve built so far, but I can think of two ways to implement it.

    1) You could add routes with the prefix ‘v1,’ ‘v2,’ etc., that set a parameter that you can then access in the controller to specify the processing to occur:

    in routes.rb:

    map.resources :posts, :path_prefix => '/:version' 

    in posts_controller.rb

    class PostsController < ApplicationController   def index     respond_to do |format|       format.xml do         if params[:version] == 'v1'           # ...         else           # ...         end       end     end   end end 

    2) You might also consider adding a custom response format for each version

    in initializers/mime_types.rb

    Mime::Type.register_alias 'application/xml', :v1 Mime::Type.register_alias 'application/xml', :v2 

    in posts_controller.rb

    class PostsController < ApplicationController   def index     respond_to do |format|       format.v1 do         # ...       end       format.v2 do         # ...       end     end   end end 

    The former would give you URLs like example.com/v1/posts.xml and example.com/v2/posts.xml; the latter would give you URLs like example.com/posts.v1 and example.com/posts.v2

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 59k
  • Answers 59k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • added an answer It appears to me that you are mixing up two… May 11, 2026 at 9:01 am
  • added an answer In your masterpage's onload add this code : string script… May 11, 2026 at 9:01 am
  • added an answer To debug these kinds of problems do the following. Run… May 11, 2026 at 9:01 am

Related Questions

Rails comes with RESTful resources out of the box, but do you use those
Rails comes with a handy session hash into which we can cram stuff to
Rails uses the concept of migrations to deal with model changes using the ActiveRecord
Rails introduced some core extensions to Ruby like 3.days.from_now which returns, as you'd expect
Rails is a great platform, but it just doesn't have the history that Perl
Rails gurus: I've just discovered named_scope thanks to another SO user. :) I'd like
Rails caches (file cache) per default domain-based, but is there a way to disable
kt@rails-ubuntu:~/rails/ledger/releases/20080820144914/.git/hooks$ ls -al ls: cannot access post-commit: No such file or directory ls: cannot
Since Rails is not multithreaded (yet), it seems like a threaded web framework would
Using Rails v2.1, lets say you have an action for a controller that is

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.