this post was submitted on 14 Jul 2023
16 points (94.4% liked)

Python

6288 readers
3 users here now

Welcome to the Python community on the programming.dev Lemmy instance!

📅 Events

PastNovember 2023

October 2023

July 2023

August 2023

September 2023

🐍 Python project:
💓 Python Community:
✨ Python Ecosystem:
🌌 Fediverse
Communities
Projects
Feeds

founded 1 year ago
MODERATORS
 

I've found this answer but in another answer the header was different. So what is this correct? Is there anyway to know from the output whether or not I've authenticated correctly?

import requests

# Replace <personal-access-token> with your personal access token
headers = {
    'Authorization': 'Bearer <personal-access-token>',
}

url = 'https://api.github.com/repos/LemmyNet/lemmy/issues'

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

# Print the response content
print(response.content)
no comments (yet)
sorted by: hot top controversial new old
there doesn't seem to be anything here