11

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.

ekad
  • 14,436
  • 26
  • 44
  • 46
Ivan Stoyanov
  • 5,412
  • 12
  • 55
  • 71

5 Answers5

6

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

user1195526
  • 542
  • 7
  • 8
4

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.

Ivan Stoyanov
  • 5,412
  • 12
  • 55
  • 71
2

AFAIK, there is no existing Java wrapper, but it shouldn't be too hard to do yourself. You'll want to look into the API v3 batch operations docs to make this as easy on yourself as possible.

TooMuchPete
  • 4,583
  • 2
  • 17
  • 21
0

Found one more Java wrapper library, relatively fresh, bananaj. At least I've found those API methods that were needed for me, but were missing in libraries from previous answers.

ydrozhdzhal
  • 154
  • 1
  • 5
0

bananaj is amazing library I forked already or another way is calling the rest API https://mailchimp.com/developer/api/marketing/automation-email-queue/ , I was testing using postman and Java http library.