Hotmail Accounts | No SMS Required | OAuth2 Activated | Never Used | HQ - Hotmail Accounts | No SMS Required | OAuth2 Activated | Never Used | HQ
Hotmail

Hotmail Accounts | No SMS Required | OAuth2 Activated | Never Used | HQ - Hotmail Accounts | No SMS Required | OAuth2 Activated | Never Used | HQ

$0.0460 / шт.
В наличии: 447
1 ~ 50
Итого: $0.0460
Характеристики
Категория Hotmail
Доставка Автоматически
Количество 1 ~ 50
Поддерживается пополнение Нет
ID апстрима #115011

Описание

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)

Похожие товары

📧 Hotmail | 🔐 OAuth2 | 🌐 Web | 📵 No phone | 🌍 Mixe
$0.6000
**Hotmail – OAuth2 Token Only, New, Long-Term, Mix
$0.1400
Hotmail Accounts 📧 | 1 Month Aged 🗓️ | Web Login 🌐
$0.1200
🔥 Hotmail / Outlook 📧 | 🚫 No SMS | 🌐 Web + Graph A
$2.4000
Hotmail Accounts 📧 | 1 Month Aged 🗓️ | Web Login 🌐
$0.1000