产品详细信息
商品信息
hotmail短效-Graph令牌-2号库
发货方式:
自动发货
商品编号:
30002
库存数量:
同步中...
单次限购数量:
5000 件
商品单价:
¥ 0.012
商品详情
商品信息
* 类型:微软短效邮箱 + Graph API令牌
* 新鲜注册,适合临时使用、注册验证等
可用时间1-2小时
卡密格式
邮箱----密码----client_id----refresh_token
* 分隔符为四个短横线 ----
Graph Token说明
* 可通过 Microsoft Graph API 收发邮件
* refresh_token 有效期约90天
Python取件示例
import requests
# 卡密信息(从购买的卡密中提取)
email = "example@outlook.com"
password = "your_password"
client_id = "your_client_id"
refresh_token = "your_refresh_token"
# 步骤1: 获取 access_token
token_url = "https://login.microsoftonline.com/consumers/oauth2/v2.0/token"
token_data = {
"client_id": client_id,
"refresh_token": refresh_token,
"grant_type": "refresh_token",
"scope": "https://graph.microsoft.com/.default offline_access"
}
response = requests.post(token_url, data=token_data)
access_token = response.json()["access_token"]
# 步骤2: 获取最新10封邮件
headers = {"Authorization": f"Bearer {access_token}"}
messages_url = "https://graph.microsoft.com/v1.0/me/messages?$top=10"
messages = requests.get(messages_url, headers=headers).json()
for msg in messages.get("value", []):
print(f"发件人: {msg["from"]["emailAddress"]["address"]}")
print(f"主题: {msg["subject"]}")
print(f"时间: {msg["receivedDateTime"]}")
print("---")
购买须知
* 虚拟商品,自动发货,请在24小时内验收
* 验收通过后不支持退款,建议使用海外IP登录
技术支持
* 客服TG:@apigmail_xing(8:00-24:00)