Gibbon is a simple wrapper for MailChimp's Primary and Export APIs.
Questions tagged [gibbon]
67 questions
0
votes
0 answers
Rails Mailchimp Background Job Not Implemented Error
So I'd like to add a user that registers on my rails site onto a mailing list. I've got the gibbon gem installed and I had success testing my ruby method in a stand-alone ruby file. I'm having issues integrating it into my application, however. …

JohnOHFS
- 174
- 14
0
votes
0 answers
Mailchimp does not update the number of subscribers
I am using Mailchimp API in an application for sending weekly emails to users.
The flow is the following: at the begging the list of subscribers is empty, so I make a request to fill it. After filling it, I make another request to create a campaign…

Madalina
- 457
- 1
- 5
- 14
0
votes
2 answers
How to access the Mailchimp file-manager/files API endpoint using Gibbon
I'm using Gibbon to access the Mailchimp API.
I've no problem using...
gibbon = Gibbon::Request.new(api_key: "valid-api-key")
lists = gibbon.lists.retrieve
And getting back the lists stored in the account.
However I'm struggling with the…

dwkns
- 2,369
- 4
- 22
- 35
0
votes
2 answers
Gibbon::MailChimpError (the server responded with status 400 @title="Invalid Resource"
I am trying to use gibbon gem and following their github docs. Here is the code I have
class ChimpController < ApplicationController
def create
send_to_mail_chimp ( params[:email])
end
def send_to_mail_chimp(email)
puts "send email is…

gates
- 4,465
- 7
- 32
- 60
0
votes
2 answers
uninitialized constant Request (NameError)
I get this error: /LiveToChallenge/config/initializers/gibbon.rb:1:in '': uninitialized constant Gibbon::Request (NameError) when I try to start the server rails server.
app/config/initializers/gibbon.rb
require…

AnthonyGalli.com
- 2,796
- 5
- 31
- 80
0
votes
1 answer
Stack Level Too Deep: retrieving an ID of a List - Gibbon / MailChimp / Rails
What is the proper way to retrieve an id of a list from MailChimp using Gibbon API Wrapper?
Say I want to do something like:
list = gibbon.lists.list(filters: "Foo")
gibbon.lists(list.id).members.create(....)
list.id returns stack level too deep…

dimitry_n
- 2,939
- 1
- 30
- 53
0
votes
1 answer
Undefined method and uninitialized constant error
Hey guys I am trying integrate Mailchimp API using gibbon gem but I keep getting an error undefined methodsave'`.
My controller code:
class LandingPageController < ApplicationController
layout 'landing_page'
def index
@subscriber =…

Ravi
- 304
- 2
- 15
0
votes
0 answers
MailChimp form not registering Users as pending until they confirm by email
I am attempting to synchronize my apps user list with who is subscribed on MailChimp.
We are using the Gibbon gem with Rails 4. Everything works fine, I can view status of a user based on their email address and determine if they are subscribed,…

user2799827
- 1,077
- 3
- 18
- 54
0
votes
0 answers
Checking user subscription status on a MailChimp list in Rails 4
I have an app that allows users to subscirbe to an email list housed on MailChimp, using the Gibbon gem to wrap the MailChimp api. I am able to access the list, subscribe members via the API. Now I want to be able to show accurately in the user…

user2799827
- 1,077
- 3
- 18
- 54
0
votes
1 answer
Prevent readding unsubscribed users
According to this post, Mailchimp prevents resubscription automatically.
But this is not true, and if you run a gb.lists.subscribe(...) on a Gibbon instance, it will resubscribe the user even if it was unsubscribed.
So my question: is this a Gibbon…

alexandrecosta
- 3,218
- 2
- 16
- 16
0
votes
2 answers
Gibbon API does not error, but does not subscribe
This is a strange one. I've had a working MailChimp, Gibbon, RoR app going for a couple of years now, and I went to go use part of my app this week and realized that the integration was no longer working. I am not receiving any errors, and some…

Branden Williams
- 93
- 7
0
votes
1 answer
Add alert after subscribing with gibbon in rails?
How can I create an alert after someone subscribes to an email list in Rails 4 with the Gibbon gem?
<%= form_tag('/static_pages/subscribe', method: "post", :class => 'form-inline', id: "subscribe-form", remote: "true",) do %>

Coherent
- 1,933
- 5
- 24
- 33
0
votes
1 answer
"campaing_id" is not a symbol error when using mail chimp api with gibbon
Context:
I have a rails application. I have a form where users can enter their email list to be a part of the news letter.
I am using mail chimp and gibbon gem for rails.
I can successfully add new subscribers to a list using the gibbon api
I can…

newbie
- 1,049
- 5
- 15
- 29
0
votes
1 answer
Gibbon Mailchimp integration simply not working
View
<%= form_tag('/posts/subscribe', method: "post", id: "subscribe", remote: "true") do %>
<%= email_field(:email, :address, {id: "mailersub", placeholder: "Enter your email"}) %>
…

Jay McNaught
- 31
- 1
- 7
0
votes
0 answers
How do I create a new controller and route in Refinerycms?
I am trying to hook up Refinerycms with mailchimp. I am aware that there is an engine available at (https://github.com/Wirelab/refinerycms-mailchimp) however, it does not seem to be compatible with refineycms 2.1.2. So I have decided use the Gibbon…

Shoebie
- 1,263
- 2
- 12
- 24