Tagged Questions
ActiveResource is the main class for mapping RESTful resources as models in a Rails application
7
votes
6answers
1k views
Add api key to every request in ActiveResource
I have 2 RESTful Rails apps I'm trying to make talk to each other. Both are written in Rails 3 (beta3 at the moment). The requests to the service will require the use an api key which is just a param ...
7
votes
2answers
615 views
Self documenting REST interface
I have a Rails based server running several REST services and a Rails based web UI that interacts with the server using ActiveResource. Same server is being used by other clients( e.g: mobile). I have ...
7
votes
2answers
2k views
How to Use ActiveResource with Shallow Nested Routes?
I have a Rails application that has a Company resource with a nested resource Employee. I'm using shallow routing, so to manipulate Employee, my routes are:
GET /employees/1
PUT /employees/1
...
7
votes
1answer
3k views
How to consume JSON formatting with ruby's ActiveResource?
ActiveRecord introduced a change to its default JSON output format. It went from
{ "user": { some_junk } }
to
{ some_junk }
ActiveResource has apparently followed their lead, expecting to ...
6
votes
3answers
3k views
Rails can't save a nested resource via ActiveResource
I'm having a problem using ActiveResource to save a model with a nested resource: I can load and save a non-nested resource with no problems, and I can load a resource plus its nested resources fine, ...
5
votes
2answers
71 views
Connect to ActiveResource/ActiveRecord with a Delphi client
I've been looking for some way to let a Delphi program communicate with a RoR service. I could use any of the SOAP libraries out there e.g.: ActionWebService to offer a SOAP service, which I could ...
5
votes
3answers
2k views
RESTful frameworks for Android, iOS…?
My company is reworking its API and wants to make everything RIGHT for this time ;) Thats the setup...
We are delivering data to clients over the internet.
Clients are mobile handsets like iPhone, ...
5
votes
3answers
2k views
How do I create an ActiveRecord relationship to an ActiveResource object?
Let's say I'm writing a Library application for a publishing company who already has a People application.
So in my Library application I have
class Person < ActiveResource::Base
self.site = ...
4
votes
3answers
218 views
Active Resource responses, how to get them
I have an Active Resource that I query for data. It returns records, counts, whatever I ask for.
eg: product = Product.find(123)
The response headers supposedly contain a custom attribute, say ...
4
votes
1answer
1k views
Disable json root element in embedded objects on ActiveResource query
I got problem with unnecessary root element in embedded json object.
Here is the cleaned sources:
User model:
class User < ActiveResource::Base
self.format = :json
...
4
votes
1answer
199 views
Get a member URL action with ActiveResource
I have a route in my application that is like this:
/deployments/:id/logs.json
It is used to retrieve logs for a specific deployment. On my client code, based in ActiveResource I have this:
logs = ...
4
votes
2answers
990 views
Multiple key/value pairs in HTTP POST where key is the same name
I'm working on an API that accepts data from remote clients, some of which where the key in an HTTP POST almost functions as an array. In english what this means is say I have a resource on my server ...
4
votes
1answer
139 views
Why does activeresource.rb just call active_resource.rb?
Here are the entire contents of activeresource.rb:
require 'active_resource'
Could someone explain the logic of this?
Why not simply have activeresource.rb contain what active_resource.rb contains ...
4
votes
9answers
1k views
How do I view the HTTP response to an ActiveResource request?
I am trying to debug an ActiveResource call that is not working.
What's the best way to view the HTTP response to the request ActiveResource is making?
3
votes
1answer
91 views
Measuring outbound requests per second?
I have a web app that is using
ActiveResource to talk to another server that has a rate limit on the
connection. I'm curious how I can best monitor that from the host my web app is running on - that ...
3
votes
1answer
111 views
Is it thread safe to set Active Resource HTTP authentication on a per-user basis?
Active Resource can make use of HTTP authentication set at the class level. For instance:
class Resource < ActiveResource::Base
end
Resource.user = 'user'
Resource.password = 'password'
or
...
3
votes
1answer
206 views
Bulk API calls in Rails
I have two different Rails application speaking with each other through API calls. Gone were the days where the call was light, meaning there was much less data transfer. We never cared about the HTTP ...
3
votes
1answer
356 views
custom parameter for activeresource
I wanna create a new customer through activeresource. without authentication_key its not a big deal. i'm using devise authentication and cancan.
customer = Customer.create(:fname=>'sampath , ...
3
votes
1answer
387 views
How Can I Make ActiveResource XML Parsing More Consistent?
I'm using ActiveResource to consume a REST webservice provided by Redmine (a bug-tracking tool). That webservice produces XML like the following:
<custom_field name="Issue Owner" id="15">Fred ...
3
votes
2answers
457 views
How do you log the URL ActiveResource uses?
Rails ActiveResource is awesome ... except for one thing: as far as I can tell, there is no way to see what URL it is using behind the scenes. For instance, let's say I have an ActiveResource called ...
3
votes
2answers
1k views
Is There an Example of Using ActiveResource and XMLRPC for Rails?
I've seen a ton of examples with ActionWebService and XMLRPC, but they're 3 years old and from what I understand, ActiveResource is supposed to replace ActionWebService.
I'm familiar with how ...
3
votes
2answers
3k views
Rails: ActiveResource - Can I set the ID explicitly?
I am using ActiveResource in Rails to manage entities in a separate database over REST.
I have been trying to explicitly manage the IDs of the remote resources, as for the current case it is simplest ...
3
votes
2answers
446 views
Has anyone written a plugin to add the final polish to ActiveResource?
I have been using ActiveResource in my Ruby on Rails applications for some time, and I am starting to really feel that it needs a final polish to make it go from "pretty nice" to "beautiful".
I would ...
3
votes
1answer
1k views
Ruby On Rails: ActiveResource and file uploads
Does anyone have experience with ActiveResource and file uploads?
I have an Adobe Air desktop application which communicates with my Rails driven website's web services.
I'd like to post files to the ...
2
votes
1answer
73 views
Rails 3.1.3 REST : Can't retrieve errors from activeresource side (json serializer)
I have Server working with active models (not active record), and client side with activeresource .
For example server side controller have such code
...
def update
if ...
2
votes
2answers
55 views
Return error message in XML response
I am working on the API of my web app. It is a Rails 2 app, and the REST API respond to XML.
For example, I need to return an error, in case it wasn't able to unsubscribe a contact from a list. So I ...
2
votes
1answer
124 views
Having 'allocator undefined for Data' when saving with ActiveResource
What I am missing? I am trying to use a rest service for with Active resource, I have the following:
class User < ActiveResource::Base
self.site = "http://localhost:3000/"
self.element_name = ...
2
votes
2answers
303 views
rails 3.1.0 belongs_to ActiveResource no longer working
I am upgrading from rails 3.0.7 to 3.1 and am having trouble getting my tests to pass. The problem occurs when I try to use a stubbed active resource object in a factory.
#employee.rb
class ...
2
votes
1answer
231 views
:has_many, :through with ActiveResource models
Three models on a UserService backend Rails app:
class User < ActiveRecord::Base
has_many :services
has_many :members
has_many :groups, :through => :members
has_many :managed_groups, ...
2
votes
0answers
247 views
How do I use the current Basecamp API with ActiveResource?
I'm trying to use the current Basecamp API (http://developer.37signals.com/basecamp/comments.shtml). The current basecamp-wrapper version was giving me fits, one of the things was because the json ...
2
votes
3answers
818 views
Connecting Rails 3.1 with Multiple Databases
At ShowNearby we have been doing a very big migration to RoR 3.1 from PHP and we are facing several problems that may be some of you have solved before.
We have big amounts of data and we decided to ...
2
votes
0answers
223 views
Add api_key on every request with Rack middleware
I work with Devise token_authentication service and ActiveResource client. I wish set automatically :auth_token params in every requests !
I tried this, but this doesn't work...
class AuthApp
...
2
votes
0answers
189 views
CarrierWave with ActiveResource
Does anyone have any insights into using CarrierWave with an ActiveResource model (in Rails 3)? I've got an ActiveResource model with field for the filename, and I want to save the file to the remote ...
2
votes
1answer
384 views
Shared user table with Authlogic
I'm looking for a solution in order to reuse the user table of another web application that use Authlogic.
I'm trying with ActiveResource (in the new app), but I'm missing something. This is the not ...
2
votes
1answer
263 views
ActiveMessaging, ActiveResources, or Ruby XMLRPC
I have a simple jruby+swt based client that collects data on an occasionally connected PC. Now I need to push those records to the server (Rails 2.3). Should I use ActiveMessaging, ActiveResources ...
2
votes
3answers
2k views
Consuming non-REST APIs in Rails with ActiveResource
I'm writing a client that consumes a non-REST API (i.e. GET site.com/gettreasurehunts), which requires that I specify all parameters (even the resource ID) in the request's HTTP body as a custom XML ...
2
votes
2answers
856 views
Rails, ActiveResource, and Pagination
What's the best way to implement pagination in a REST API so that an ActiveResource client can easily navigate paginated results? There have been some proposals, for example here and here, but being ...
2
votes
1answer
1k views
Can ActiveResource models integrate with ActiveRecord models?
I'm working on a Rails app that will serve as an authentication system for other Rails apps through Rails's ActiveResource functionality.
The authentication app has an ActiveRecord model called User. ...
2
votes
2answers
923 views
How Do I Authenticate to ActiveResource to Avoid the InvalidAuthenticityToken Response?
I created a Rails application normally. Then created the scaffold for an event class. Then tried the following code. When run it complains about a InvalidAuthenticityToken when the destroy method is ...
1
vote
2answers
52 views
rails 3 REST: activeresource destroy validation
Hi all I'm using active_resource and have next question.
sometimes there is destroy validation needed
Example
def destroy
if @user.destroy
head :ok
else
...
1
vote
2answers
68 views
Set site/user fields in ActiveResource
I am building a sinatra app that will use Highrise CRM gem to access Highrise data. This gem is based on ActiveResource class. I want to set site, user fields for every request. I followed suggestion ...
1
vote
0answers
37 views
Set site/username field ActiveResource based highrise gem
I am building a sinatra app that will use Highrise CRM gem to access Highrise data. The example code to use this gem from the wiki,
require 'highrise'
Highrise::Base.site = ...
1
vote
0answers
31 views
Self.username and password in Rails 3 Active Resource
Is the point of the self.username and self.password Active Resource fields to authenticate the application that wants to consume the API? If this is correct I would still need a separate ...
1
vote
1answer
44 views
Why is ActiveResource returning Arrays of Hashes instead of objects?
I've just started building an api and application that consumes from the api using ActiveResource. I'll get into specifics with an edit, but my initial problem is this:
I have a controller that does ...
1
vote
1answer
49 views
ActiveResource pagination
What would be the best way to approach pagination over an API with active resource? I'm building the API and the app consuming the API so I need both ends of the equation.
I've seen people setting ...
1
vote
2answers
31 views
What are the consequences of overriding Array.to_param within an ActiveResource based plugin
An active_resource based class:
Contact.search(:email => ['bar@foo.com','foo@bar.com'])
would produce this:
?email[]=bar@foo.com&email[]=foo@bar.com
The specific API that I'm working with ...
1
vote
0answers
45 views
Proper way to add a non-restful custom method to Active Resource class
I have route that looks like this:
/orders/preview
It returns something like:
<order><total>100</total></order>
I want to add this method to an active resource class. ...
1
vote
1answer
48 views
Where and how does Active Resource execute its HTTP requests?
I can't find the place where Active Resource initiates its connections. I was expecting Connection.request to call into a networking library, but instead it merely calls into ...
1
vote
1answer
87 views
howto make activeresource new record match expected post data
I have a resource there posting "host[name]=example.com" to it - creates a new host record with name example.com
The following works
curl http://localhost:3300/hosts.xml --request POST --data ...
1
vote
1answer
81 views
Active Resource in Unobtrusive Javascript
I don't know any better way to ask this question than to give my situation.
I have a reader application that needs to be made, on the page it will have the Table of Contents on the left side and the ...