I am trying to use the Java API of Mailinator to connect to the mailbox then get a list of messages:
MailinatorClient mailinatorClient = new MailinatorClient("myteamapitoken");
Inbox inbox = mailinatorClient.request(new GetInboxRequest("myteamdomain.test.com"));
But I constantly get ExceptionInInitializerError caused by
Illegal character in path at index 38: https://api.mailinator.com/v2/domains/{domain}/inboxes/{inbox}
I have tried replacing "myteamdomain.test.com" by "public" or "private", I have tried adding my inbox to the GetInboxRequest but to no avail, I still constantly get this error.
Any idea as to what I am doing wrong ?