Java Wrapper for Mailchimp API v3.0

I just started working with the Mailchimp API. So far, I have set up open authentication with Node.js and Angular.js . I want to export clients (first name, last name and email address) from my application to the Mailchimp list. I want to do this in the Java desktop, so I started looking for the Mailchimp API shell for Java . So far I have managed to find the ecwid-mailchimp shell, but for Mailchimp API v2.0 it looks like the project is dead.

Is there an active Java shell Java for Mailchimp API version 3.0?

It is not recommended to use the old API (v2.0) and the dead implementation in the new project.

An alternative is to implement the implementation itself, but it is a waste of time if someone has already done so.

+5
source share
3 answers

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

+1
source

MaleOrang is the new Java Wrapper for Mailchimp API version 3.0. This is a replacement for ecwid-mailchimp from the same vendor.

+3
source

AFAIK, there is no existing Java shell, but it should not be too difficult to do it yourself. You will want to look into the batch operations API v3 to make it as simple as possible on yourself as much as possible.

+2
source

Source: https://habr.com/ru/post/1241517/


All Articles