Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

rack_monkey_party

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rack_monkey_party

  • 0.1.0
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

RackMonkeyParty

Build Status

A rack endpoint for adding people to a mailchimp list

Installation and configuration

Add this line to your application's Gemfile:

gem 'rack_monkey_party'

And then execute:

$ bundle

Or install it yourself as:

$ gem install rack_monkey_party

Configure mailchimp parameters

  MonkeyParty.api_key = 'an_api_key'
  MonkeyParty.data_center = 'us1'
  MonkeyParty.default_list = 'Your List Name'

Usage

Perform a post to the app with a JSON-based, subscriber payload

  post "/", { "subscriber" => {"email" => "user@example.com" }}

If the request successfully processes, you should receive a 201 (created) response. This means that the email address was successfully added to the desired list

If something went wrong you should receive a 421 (unprocessable entity). You will also receive the error message received from MailChimp.

  {
    email: "bademail",
    error: {
      message: "Invalid Email Address: bademail", 
      code: "502"
    }
  }

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Added some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

FAQs

Package last updated on 18 Mar 2012

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc