Rails Mailchimp API与Gibbon Gem集成

时间:2013-03-05 16:27:14

标签: jquery ruby-on-rails gem mailchimp

我正在尝试将MailChimp Api包含在电子邮件表单中,其中包含Gibbon gem in rails。

添加邮件等工作,我在控制台中看到来自API的正确回调,但除了成功案例,它正确地更改了电子邮件ID div,没有任何反复。

似乎案例切换不起作用,或者它无法读取从api返回的代码。

路线等设置正确。

这是我的控制器:

 class MailchimpformController < ApplicationController

  def index
  end

  def submit
    mailchimp_api_key = "mysecretapikey"
    mailchimp_list_id = "mysecretlistid"
    g = Gibbon.new(mailchimp_api_key)
    response = g.list_subscribe({:id => mailchimp_list_id,
                                :email_address => params[:email],
                                :double_optin => false,
                                :send_welcome => false})

    if(response.is_a?(Hash))
     puts response
    case response['code']
     when 502
      @js_email_error = "Invalid Address!"
     when 214
      @js_email_error = "Already signed up!"
     else
      @js_email_error = response['error']
    end
      @js_email_success = nil
    else
      @js_email_success = "Thanks!"
      @js_email_error = nil
    end
    respond_to do |format|
     format.js
    end
    end
  end

只有在向列表中添加新电子邮件时才有效。

index.html.erb

<%= form_tag submit_path, :class=> "form", remote: true do %>
    <%= text_field_tag :email, nil, :class => 'email', :type=>"email", :placeholder => 'Sign up for beta testing' %>
    <%= submit_tag "Absenden", :alt => "Absenden", class: "input-btn"%>
<% end %>

和javascript的东西submit.js.erb

<% if @js_email_error %>
$("#email").val("<%= @js_email_error %>");
<% end %>
<% if @js_email_success %>
$("#email").val("<%= @js_email_success %>");
<% end %>

我还收到来自MailChimp API的(正确)Callback的POST / mailchimpform / submit Completed 500 Internal Server Error。我不知道为什么。

1 个答案:

答案 0 :(得分:1)

现在好了。错误是由长臂猿(设置)的错误处理引起的

g.throws_exceptions  = false

在提交之前它现在可以正常工作。