Hotmail Accounts - Real Names - No SMS Required - Web Login Works - Never Used - IMAP POP3 Enabled - OAuth2 - Refresh Token and Client ID Included - Hotmail Accounts - Real Names - No SMS Required - Web Login Works - Never Used - IMAP POP3 Enabled -
| Category | Hotmail |
| Delivery | Automatic |
| Quantity | 1 ~ 50 |
| Refill supported | No |
| Upstream ID | #37763 |
Description
💥Use only this link to log in to the backup email: https://firstmail.ltd/webmail/login
All accounts are verified before sale
💥Hotmail accounts look like this: randomrealname@hotmail.com
Web login works
Never used
No SMS required
IMAP POP3 enabled
OAuth2 activated, refresh token & client id included with accounts
Full access to the backup email is provided, backup email IMAP: imap.firstmail.ltd:993
💥Account format provided:
email:password:recovery email:recovery email password:refresh token:client id
---------------------------------------------------
💥To log in to the backup email, use only this link: https://firstmail.ltd/webmail/login
All accounts are checked before sale
💥Hotmail accounts look like this: randomrealname@outlook.com
Web login works
Never used
No SMS required
IMAP POP3 enabled
OAuth2 is activated, refresh token & client id come with accounts
Backup email access is provided, backup email IMAP: imap.firstmail.ltd:993
💥Account format:
email:password:recovery email:recovery email password:refresh token:client id
💥Python code to log in with OAuth2:
import requests
import imaplib
import email
EMAIL = "user@outlook.com" # enter account email between ""
REFRESH_TOKEN = "REFRESH_TOKEN" # enter refresh token between ""
CLIENT_ID = "CLIENT_ID" # enter client id between ""
r = requests.post(
"https://login.microsoftonline.com/common/oauth2/v2.0/token",
data={
"client_id": CLIENT_ID,
"refresh_token": REFRESH_TOKEN,
"grant_type": "refresh_token",
"scope": "https://outlook.office.com/IMAP.AccessAsUser.All offline_access",
},
)
access_token = r.json().get("access_token")
if not access_token:
raise SystemExit("Cant get access_token")
auth_string = f"user={EMAIL}\1auth=Bearer {access_token}\1\1"
imap = imaplib.IMAP4_SSL("outlook.office365.com")
imap.authenticate("XOAUTH2", lambda _: auth_string)
imap.select("INBOX")
typ, data = imap.search(None, "ALL")
for num in data[0].split()[-10:]:
typ, msg_data = imap.fetch(num, "(RFC822)")
msg = email.message_from_bytes(msg_data[0][1])
print("From:", msg.get("From"))
print("Subject:", msg.get("Subject"))
print("-" * 40)
imap.logout()