
ऑटो-रजिस्टर्ड Outlook अकाउंट्स | mail@outlook.com जैसे ईमेल | वेब एक्सेस उपलब्ध | कोई वेरिफिकेशन ज़रूरी नहीं | 1 साल से अधिक समय से लाइव | किसी भी उद्देश्य के लिए इस्तेमाल करने योग्य
Seller-provided titleMarketplace cards may show: ऑटो-रजिस्टर्ड Outlook अकाउंट्स| mail@outlook. com जैसे ईमेल| वेब एक्सेस उपलब्ध| कोई वेरिफिकेशन ज़रूरी नहीं| 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
फॉर्मेट:
login|pass|refresh_token|client_id
IMAP, POP3, SMTP प्रोटोकॉल को निष्क्रिय करने के बारे में लेख: https://support.microsoft.com/en-us/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"Access token retrieved: {refresh_token}")
except Exception as e:
logging.error(f"Error during first request: {e}")
try:
post_data = {
'client_id': data_hotmail.split('|')[3],
'refresh_token': data_hotmail.split('|')[2],
'grant_type': 'refresh_token'
/IMAP.AccessAsUser.All' # Request the correct scope
}
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"Access token retrieved on second attempt: {refresh_token}")
except Exception as e:
logging.error(f"Error during second request: {e}")
return refresh_token
