Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Java Wrapper for Mailchimp API v3.0

I just started working with the Mailchimp API. So far I have configured the open authentication using Node.js and Angular.js. I want to implement an export of customers (First name, Last name and Email) from my app to a Mailchimp list. I want to do this in a Java worker, so I started looking for a Mailchimp API wrapper for Java. So far I have managed to find ecwid-mailchimp wrapper, but it is for Mailchimp API v2.0 and it looks like the project is dead.

Is there an active implementation of a Java wrapper for Mailchimp API v3.0?

It does not seem a good idea to use the old API (v2.0) and a dead implementation in a new project.

The alternative is to do the implementation by myself, but it is a waste of time if someone has already done it.

like image 725
Ivan Stoyanov Avatar asked Jan 26 '16 15:01

Ivan Stoyanov


2 Answers

MaleOrang is a new Java Wrapper for Mailchimp API v3.0. It is a replacement for ecwid-mailchimp from the same vendor.

like image 174
user1195526 Avatar answered Oct 10 '22 03:10

user1195526


After a lot of searching I found this project on github. It is incomplete, but I created a pull request with the OAuth and am currently working on batches.

like image 36
Ivan Stoyanov Avatar answered Oct 10 '22 02:10

Ivan Stoyanov