If Azure free account can use API management for email login/reading email/deleting email/etc...
Recently, when I tried to login in my hotmail account using Java:
String emailImap = "outlook.office365.com";
String email = "*** Email address is removed for privacy ***";
Store store = session.getStore("imaps");
store.connect(emailImap, email, emailPwd);
(The emailPwd is the app password I created in the two-factor authentication step), I got the "AUTHENTICATE failed
" issue.
Seems currently hotmail can't be connected by IMAP, and I searched that hotmail only support oAuth 2.0 for API login, is it correct?
To use oAuth 2.0, I have to create an Azure account, I wonder if Azure free account can use API management for email login/reading email/deleting email/etc...
Could you help me with this question?