
HOTMAIL অ্যাকাউন্ট | ১ মাস পুরনো | ওয়েব লগইন | OAUTH2 টোকেন | গ্রাফ API
Seller-provided titleMarketplace cards may show: Hotmail অ্যাকাউন্ট| ১ মাস পুরনো| ওয়েব লগইন| Oauth2 টোকেন| গ্রাফ 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)
