Hotmail
Hotmail Accounts | No SMS Required | OAuth2 Activated | Never Used | HQ - Hotmail Accounts | No SMS Required | OAuth2 Activated | Never Used | HQ
$0.0460
/ each
Stock:
447
1 ~ 50
Total:
$0.0460
Specifications
| Category | Hotmail |
| Delivery | Automatic |
| Quantity | 1 ~ 50 |
| Refill supported | No |
| Upstream ID | #115011 |
Description
All accounts are verified before sale
Outlook accounts: randomname@hotmail.com
Never used anywhere
Oauth2 is activated, refresh token & client id provided with accounts
No SMS required
No backup email added; if Outlook asks to add one, use Oauth2 authorization
Account format provided:
email:password:refresh token:client id
---------------------------------------------------
100% accounts were checked before sale
Outlook accounts: randomemailname@outlook.com
Never used
Skip option
Web login works
SMS not required
Accounts come without reserve email; if Outlook asks to add one, use Oauth2 authorization
Account format:
email:password:refresh token:client id
Python code to login with Oauth2:
import requests
import json
EMAIL = "INPUT_CLIENT_ID"
REFRESH_TOKEN = "INPUT_REFRESH_TOKEN"
CLIENT_ID = "INPUT_CLIENT_id"
TOKEN_URL = "https://login.microsoftonline.com/common/oauth2/v2.0/token"
r = requests.post(
TOKEN_URL,
data={
"client_id": CLIENT_ID,
"grant_type": "refresh_token",
"refresh_token": REFRESH_TOKEN,
"scope": "offline_access User.Read Mail.Read",
},
)
print("TOKEN STATUS:", r.status_code)
print(json.dumps(r.json(), indent=2, ensure_ascii=False))
access_token = r.json().get("access_token")
if not access_token:
raise SystemExit("Failed to obtain access_token")
headers = {
"Authorization": f"Bearer {access_token}",
"Accept": "application/json",
}
url = "https://graph.microsoft.com/v1.0/me/mailFolders/inbox/messages"
params = {
"$top": 10,
"$select": "id,from,subject,receivedDateTime,bodyPreview",
"$orderby": "receivedDateTime desc",
}
resp = requests.get(url, headers=headers, params=params)
print("GRAPH STATUS:", resp.status_code)
print(json.dumps(resp.json(), indent=2, ensure_ascii=False))
messages = resp.json().get("value", [])
for msg in messages:
sender = msg.get("from", {}).get("emailAddress", {}).get("address")
subject = msg.get("subject")
date = msg.get("receivedDateTime")
preview = msg.get("bodyPreview")
print("From:", sender)
print("Subject:", subject)
print("Date:", date)
print("Preview:", preview)
print("-" * 50)