مسعود
4 ماه پیش توسط مسعود مطرح شد
1 پاسخ

باگ در اسکریپت data extractorو data breach کار نمیکنه

import requests

def fetch_data():
url = "https://example.com/api/users"
headers = {
"Authorization": "Bearer TEST_TOKEN"
}

response = requests.get(url, header=headers)  

data = response.json()  

return data

print(fetch_data())