ActiveResource is the main class for mapping RESTful resources as models in a Rails application
0
votes
2answers
21 views
Changing an instance variable within dynamic dispatch method (dynamic resource using ActiveResource)
I am using dynamic dispatch to define several class methods in a class that inherits from ActiveResource.
class Invoice < ActiveResource::Base
self.site = 'http://localhost:8080/'
def ...
0
votes
0answers
28 views
Passing authentication parameters in Active Resource (Rails 3)
I'm using: Rails 3.2, Mac OS X Mountain Lion
I have this Active Resource Model:
Class Model < ActiveResource::Base
self.site = "http://localhost:3000"
end
Problem is, the site I am ...
0
votes
1answer
32 views
Rails 3 route has incorrect singular form
I have the following routes:
resources :businesses, only: [:show, :index, :new, :create] do
resources :pledge_drives
end
This creates the following:
% rake routes | grep pledge
...
0
votes
1answer
70 views
Consuming a rest API in rails 3.2.13
I have two rails apps running on different ports. From one app I am trying to consume the API of the other app.
Here's the code for Product.rb model in APP_1.
class Product < ...
1
vote
0answers
52 views
ActiveResource Update Operation :: Can't mass-assign protected attributes: created_at, id, updated_at
When I try to update and save ActiveResource I am getting following error.
on console
> m = Machine.first
=> #<Machine:0xb07a0d4 @attributes={"created_at"=>"2013-04-22T09:13:56Z", ...
1
vote
0answers
21 views
Rails | performance when I pass an object to a partial
I know it's probably not such a big issue, but I have a question that interests me:
In rails (and in a web application in general), lets say I have an object that includes the following properties: ...
0
votes
1answer
36 views
Rails 3 ActiveResource not escaping unicode in xml when sending request
We recently moved to rails 3.2.13. We use ActiveResource to call a web service. ActiveResoure will generate the xml payload. We noticed that the new xml doesn't escape unicode character. For ...
0
votes
0answers
36 views
ActiveResource Double Nesting Issue
I'm using ActiveResource in Rails 3.2.13 to update an object with nested attributes on a remote REST server. My form on the client side looks like this:
= form_for @user, :url => ...
0
votes
0answers
31 views
How to cast ActiveResource returned results to a certain class
I have
class Seo < ActiveResource::Base
and set
self.element_name = 'deal'
Then I query with
result = Seo.find("....blabla..").deals
Now result is with format below:
{
-featured: {..}
...
1
vote
1answer
96 views
Complex attribute using ActiveResource in Rails 3.2.12
I'm trying to convert a webservice response into a object in my Rails application, I'm receiving the following json:
{
"id": 1,
"status": true,
"password": "123",
"userType": {
...
0
votes
1answer
42 views
Extending ActiveResource Class
Is it possible to extend an ActiveResource class unmarshalled from a response?
Example of ActiveResource request:
GET http://www.exampleservice.com/products.json
Response
[{name:'Product X', ...
1
vote
0answers
88 views
Active resource param serialization issue
I'm trying to pass the following ruby hash into an active resource(3.0.9) find(:from) call.
my_hash = {
:p => {:s => 100, :e => 2},
:k => "blah",
:f ...
0
votes
1answer
30 views
How to name a Rails resource that is an adjective or preposition?
I'm teaching kids how to do a particular app in Rails and it requires a resource that is about somebody being responsible for someone else. For example, here are 2 models:
class User < ...
0
votes
1answer
98 views
ActiveResource error with “wrong constant name ENV.xxx”
I'm consuming a REST endpoint using ActiveResource which has Keys called among others ENV.OM_PRODUCER, ENV.UMS_PRODUCER.
These appear to be causing an issue with my view, I'm getting errors such as:
...
0
votes
0answers
70 views
How to get the attempted url and header information?
I'm trying to connect to a web service endpoint, and I can't figure out how to debug this, my code is:
require 'rubygems'
require 'active_resource'
class Project < ActiveResource::Base
class ...
0
votes
1answer
54 views
What are the basic assumed endpoints with ActiveResource?
I have a java backed web service that i want to test out with ActiveResource.
What are the base assumed url endpoints, say I have a resource for Users.
Currently my url is:
localhost:8080/api/users
...
0
votes
0answers
93 views
Custom POST request on instance of active resource without first doing a find
I'm currently using Active Resource to post to a custom end point as follows:
def self.decide(group_id, disb)
answer = find(group_id).post(:decide, nil, {decision_data: disb}.to_json)
JSON.parse ...
1
vote
1answer
114 views
setting headers in active resource request
I have an Active Resource model that needs to set a header before posting/putting through save and update_attributes. The issue is that the header value needs to be different for each user, so it ...
0
votes
1answer
83 views
Rails, has_and_belongs_to_many, :HashWithIndifferentAccess error
On my server, I have two models:
Broadcast
class Broadcast < ActiveRecord::Base
validates_presence_of :content
belongs_to :user
has_and_belongs_to_many :feeds
attr_accessible ...
2
votes
2answers
103 views
Rails, nested attributes, can't mass assign error
I have two models on server:
Feed
class Feed < ActiveRecord::Base
attr_accessible :name
belongs_to :broadcasts
end
Broadcast
class Broadcast < ActiveRecord::Base
...
3
votes
1answer
137 views
Rails ActiveResource detecting a HTTP 206 response code
How can I detect that an active resource find() call returned HTTP 206 instead of a typical HTTP 200?
I know ActiveResource throws various exceptions for HTTP 3xx-5xx response codes, but how can you ...
2
votes
1answer
112 views
Non rails style format of XML response how to parse with ActiveResource correctly?
Using Rails and ActiveResource i am getting non-rails style of XML response form third-party API. Object which i like to map is basically wrapped in prestahop element. What should i override to get ...
0
votes
0answers
32 views
Rails 2.X equivalent of ActiveResource::Base#schema=
Is there any to mimic the Rails 3 function of ActiveResource::Base schema= in Rails 2?
I subclassed ActiveResource::Base, and I want to treat certain attributes as "known" fields, which will not ...
0
votes
1answer
150 views
Consuming REST API Rails
I've looked at this question but it's quite old and I feel there's now other alternatives to ARes.
Given that many people seem to think that ActiveResource is kind of outdated and heavyweight, I've ...
1
vote
0answers
218 views
howto parse nested json attributes with activeresource
i am trying to parse the following jsons response via activeresource in the padrino framework from a rest-api:
...
0
votes
1answer
132 views
Rails 3 Consuming 'Non Standard' REST API
I need to interface with an api which seems to be not playing well with ActiveResource. What's the best/easiest way to consume it?
I need to do a variety of read/write actions with the api including ...
1
vote
1answer
103 views
ActiveResource how to fetch a resource from a REST API that has a singular name?
I am trying to grab data from a third-party library that has an API that looks like:
https://foo.com/user.json?username=<USERNAME>
I can't figure out how to force ActiveResource to use ...
1
vote
1answer
106 views
Setting Rails ActiveResource headers in a thread safe way
I am making calls to an ActiveResource object inside an engine, and I need to set the headers in a thread safe way.
I have /lib/mymodule.rb in the engine and it looks something like this:
module ...
0
votes
1answer
202 views
NoMethodError (undefined method `body' for #<Hash:0xbc3ee74>):
Getting an obscure error which originates from the ActiveResource standard Rails
library. The line within Rails causing this problem is given below along with the output. Any idea on how to resolve ...
3
votes
2answers
273 views
How to get past [@attributes] in SimpleXMLElement? [duplicate]
The goal: Using PHP/CodeIgniter, I need to get a list of users and their custom field names and values in a usable array. If I can just get to the items, I can do what I need. Please see OUTPUT with ...
2
votes
0answers
169 views
ActiveResource or ActiveModel association for Shopify App
I'm working on a Shopify app, and i'm wanting to associate a model with a Shopify product.
A side note; I'm using the shopify_api gem which uses ActiveResource allowing me to use ShopifyAPI::Product ...
1
vote
0answers
127 views
Rails 3: ActiveResource authentication agains LDAP server
I am using devise and devise_ldap_authentication at my Rails 3 apps to let users authenticate against the companies LDAP server (Active Directory). Works quite well so far.
Now I want some of these ...
2
votes
1answer
219 views
Formatting of Rails logs when using ActiveRecord
So I have an application that earlier did not need ActiveRecord - thus we removed ActiveRecord from the application and formatted our logging as such:
In application.rb:
class DreamLogFormatter < ...
1
vote
1answer
129 views
Serializing Simple JSON String with Rails ActiveResource
I have a RESTful API call that acts like this:
HTTP GET http://addresss:port/settings/{setting}
which returns just the value of the setting specified as a simple string:
"settingValue"
I want to ...
0
votes
1answer
51 views
How to return a list of all email addresses associated with a company using the basecamp API
I've managed to get this to almost work but I think I'm getting something seriously confused. All the examples seem to cover finding single records based on their id.
I thought I would be able to ...
1
vote
1answer
49 views
Continuing loop through ResourceNotFound?
I'm looping through a set of users and as part of that, I'm doing a call to a third-party API (via the Intercom API Ruby wrapper).
The Intercom API throws an Intercom::ResourceNotFound if it can't ...
0
votes
2answers
66 views
Rails Active Resources ignore conditions
I have been searching a solution for this issue but in no vain. Basically, I am trying to do some searches using Active Resources eg:
File.find(:all, :params => {:file_name => "blah"})
or:
...
3
votes
1answer
53 views
ActiveResource: specify retry?
I'm using ActiveResource for long-running import and synchronization jobs. Is there a way to specify retries for failed requests? I want to avoid ugly begin/rescue/retry constructs around each and ...
2
votes
1answer
503 views
Consume HTTPS REST API in Rails via ActiveResource
I am pretty new with Rails and REST. I want to consume REST API in Rails. I found an easy and standard way with ActiveResource.
API which I want to consume is: https://api.pinterest.com/v2/popular
...
0
votes
1answer
107 views
ActiveResource with conditional prefix (self.prefix)?
Using ActiveResource and when I have a nested resource, using the 'prefix' works great.
class Account < ActiveResource::Base
self.prefix = "/users/:user_id/"
end
All is fine as long as ...
0
votes
1answer
70 views
design advice: Gemify ActiveResource subclass
I've been asked to build a gem out of a number of ActiveResource subclasses in a Rails app of ours.
The difficulty is that the self.site call uses a constant set in the Rails environment file (so ...
0
votes
1answer
133 views
Rails: Where to store possible values of an attribute in ActiveResource
Say I have an ActiveResource which has an schema with several attributes. One of the attributes is expected to have three values (defined by the API where the ActiveResource is talking to).
Since ...
0
votes
1answer
143 views
How to check for availability of an ActiveResource resource?
In my rails app, I am using ActiveResource to access another service, and I'd like to gracefully handle the exception that occurs when that resource is offline (server is down/ip is blocked etc.). ...
0
votes
1answer
105 views
Active Resource return nil object
I try to use active resource with a server where I can see log.
I request the server with a show on a order with xml.
class Orders < ActiveResource::Base
self.site = ...
0
votes
0answers
28 views
What specifications must an API adhere to in order to use ActiveResource?
I am trying to determine if it makes sense for me to use ActiveResource within my Rails app to access a (private) API. Thus, I cannot disclose further information about the API itself, however I have ...
0
votes
0answers
38 views
Rails, skip unmarshal ActiveResource XML
I have a rails app that uses ActiveResource to communicatie with an api for its models.
There are several occasions when the api is returning a very large XML file, which the site will then return ...
0
votes
1answer
55 views
uninitialized constant ::ActiveRessource
I try to call an API. I just want use active resource so I make this code in a simple file .rb:
class Order < ActiveResource::Base
self.site = "http://localhost:3000/api/"
...
1
vote
1answer
169 views
How to add a product variant with the Ruby gem
What is the correct way to add a product variant?
I create the product successfully and it shows up in my Shopify admin. However the price is always zero and the quantity is always infinity.
I've ...
0
votes
2answers
468 views
How can I specify prefix parameters when saving a nested ActiveResource?
I have a nested ActiveResource model (i.e. it's within another model's namespace). Trying to call save raises:
ActiveResource::MissingPrefixParam: client_id prefix_option is missing
How do I supply ...
1
vote
1answer
282 views
Rails 3.2, activeresource and certificate authentication
I'm writing to ask for an example of use of the active resource with certificate authentication.
The documentation found on http://apidock.com/rails/ActiveResource/Base does not provide examples.
I ...
