Реклама в магазине
Banner
Google

⭐ TRUSTED OUTLOOK ⭐ FULL VALID 100% - OAuth 2.0 Activated (refresh_token and client_id) - NEW OUTLOOK NOT USED- Web available - No Need SMS for Login

Изображение: ⭐ TRUSTED OUTLOOK ⭐ FULL VALID 100% - OAuth 2.0 Activated (refresh_token and client_id) - NEW OUTLOOK NOT USED- Web available - No Need SMS for Login
2 шт.
2,4 ₽
Мин.заказ: 1 шт.
Куплено: 0 раз

Аккаунты зарегистрированы автоматически. // Accounts are registered automatically.

Почты вида почта@outlook.com. //Emails are in the format [email protected].

Есть кнопка пропуск 7 дней. // A 7-day skip option is available.

номер не привязан. // No phone number is linked.

Активирован oauth2 (refresh_toke + client_id) // OAuth2 is activated (refresh_token + client_id).

Иностранные имена и фамилии (пример: Alla Skeels). // Foreign first and last names (example: Alla Skeels).

Пол мужской или женский. //Gender is male or female. 

IP:MIXED


Формат // Format

login|pass|refresh_token|client_id 

EXAMPLE CODE READ OUTLOOK WITH PYTHON :

import requests


def get_access_token(account_data, proxy=None):
    try:
        parts = account_data.split('|')
        client_id = parts[3]
        refresh_token = parts[2]

        payload = {
            'client_id': client_id,
            'refresh_token': refresh_token,
            'grant_type': 'refresh_token',
            'scope': 'https://graph.microsoft.com/.default offline_access'
        }

        proxies = {"http": proxy, "https": proxy} if proxy else None

        response = requests.post(
            "https://login.microsoftonline.com/common/oauth2/v2.0/token",
            data=payload,
            headers={"Content-Type": "application/x-www-form-urlencoded"},
            proxies=proxies
        )

        result = response.json()
        return result.get('access_token')

    except:
        return None


def read_outlook_mail(account_data, proxy=None):
    access_token = get_access_token(account_data, proxy)

    if not access_token:
        print("Failed to retrieve access token")
        return

    proxies = {"http": proxy, "https": proxy} if proxy else None

    headers = {
        "Authorization": f"Bearer {access_token}",
        "Accept": "application/json"
    }

    response = requests.get(
        "https://graph.microsoft.com/v1.0/me/messages?$top=10",
        headers=headers,
        proxies=proxies
    )

    if response.status_code != 200:
        print("Failed to fetch emails:", response.text)
        return

    data = response.json()

    for mail in data.get("value", []):
        subject = mail.get("subject")
        sender = mail.get("from", {}).get("emailAddress", {}).get("address")

        print(f"From: {sender}")
        print(f"Subject: {subject}")
        print("-" * 50)


# ===== TEST =====
account = "login|password|refresh_token|client_id" #paste your data here
read_outlook_mail(account)