
हॉटमेल अकाउंट्स | 1 महीने पुराने | वेब लॉगिन | OAUTH2 टोकन | GRAPH API
Seller-provided titleMarketplace cards may show: हॉटमेल अकाउंट्स| 1 महीने पुराने| वेब लॉगिन| Oauth2 टोकन| Graph Api
विक्रेता और वितरण
| सभी | |
|---|---|
| औसत वितरण | 53 मिनट |
| पूर्णता दर | 99.9% |
| विवाद दर | 0.1% |
| आदेश | 1799 |
यह आपूर्तिकर्ता (सभी उत्पाद)
- औसत वितरण: 53 मिनट
- पूर्णता दर: 99.9%
- विवाद दर: 0.1%
- 1799 ऑर्डर के आधार पर
विकल्प चुनें
ऑर्डर सारांश
खातों का प्रारूप: login:password:refresh_token:client_id. OAuth2 GraphAPI ईमेल पढ़ने का Python उदाहरण: import requests; def get_access_token(refresh_token, client_id): token_url = "https://login.microsoftonline.com/common/oauth2/v2.0/token"; data = { "client_id": client_id, "grant_type": "refresh_token", "refresh_token": refresh_token, "scope": "https://graph.microsoft.com/.default offline_access" }; response = requests.post(token_url, data=data); response.raise_for_status(); return response.json()["access_token"]; def read_emails(access_token): headers = { "Authorization": f"Bearer {access_token}" }; url = "https://graph.microsoft.com/v1.0/me/mailFolders/inbox/messages?$top=1"; response = requests.get(url, headers=headers); response.raise_for_status(); emails = response.json()["value"]; print("गिनती: ", len(emails)); for email in emails: print(" विषय:", email["subject"]); print(" प्रेषक:", email["from"]["emailAddress"]["address"]); print(" पूर्वावलोकन:", email["bodyPreview"]); print("-" * 40); account = { "email": 'example@hotmail.com', "client_id": 'CLIENT_ID_HERE', "refresh_token": 'YOUR_REFRESH_TOKEN_HERE' }; access_token = get_access_token(account['refresh_token'], account['client_id']); read_emails(access_token)
