
自動登録済みOutlookアカウント | mail@outlook.comのようなメールアドレス | Webアクセス可能 | 認証不要 | 1年以上利用可能 | あらゆる目的に使用可能
Seller-provided titleMarketplace cards may show: 自動登録済みOutlookアカウント| mail@outlook. comのようなメールアドレス| Webアクセス可能| 認証不要| 1年以上利用可能| あらゆる目的に使用可能
出品者 & 配送
| すべて | |
|---|---|
| 平均配送 | 53 分 |
| 完了率 | 99.9% |
| 紛争率 | 0.1% |
| 注文 | 1799 |
この出品者(全商品)
- 平均配送: 53 分
- 完了率: 99.9%
- 紛争率: 0.1%
- 1799件の注文に基づく
オプションを選択
注文の概要
アカウントは自動登録されています。メールは mail@outlook.com 形式です。SMS認証が必要です。OAuth2が有効化されています(refresh_token + client_id)。外国人の姓名(例:Alla Skeels)。性別:男性または女性。経過期間:1ヶ月以上。IP:EU
形式:
ログイン|パスワード|refresh_token|client_id
IMAP、POP3、SMTPプロトコルを無効にする方法に関する記事:https://support.microsoft.com/ja-jp/office/modern-authentication-methods-now-needed-to-continue-syncing-outlook-email-in-non-microsoft-email-apps-c5d65390-9676-4763-b41f-d7986499a90d
トークン更新用のPythonコード:
def get_refresh_token_hotmail(data_hotmail, proxy=None):
access_token = None
try:
post_data = {
'client_id': data_hotmail.split('|')[3],
'refresh_token': data_hotmail.split('|')[2],
'grant_type': 'refresh_token',
}
response = requests.post(
"https://login.microsoftonline.com/common/oauth2/v2.0/token",
data=post_data,
headers={"Content-Type": "application/x-www-form-urlencoded"},
proxies={"http": proxy, "https": proxy} if proxy else None
)
response_data = response.json()
refresh_token = response_data.get('refresh_token')
logging.debug(f"アクセストークン取得: {refresh_token}")
except Exception as e:
logging.error(f"最初のリクエスト中にエラー: {e}")
try:
post_data = {
'client_id': data_hotmail.split('|')[3],
'refresh_token': data_hotmail.split('|')[2],
'grant_type': 'refresh_token'
/IMAP.AccessAsUser.All' # 正しいスコープをリクエスト
}
response = requests.post(
"https://login.microsoftonline.com/common/oauth2/v2.0/token",
data=post_data,
headers={"Content-Type": "application/x-www-form-urlencoded"}
)
response_data = response.json()
refresh_token = response_data.get('refresh_token')
logging.debug(f"2回目の試行でアクセストークン取得: {refresh_token}")
except Exception as e:
logging.error(f"2回目のリクエスト中にエラー: {e}")
return refresh_token
