'Authorization': access_token,
}
data = {
"name": "Hello-World",
"description": "This is your first repository",
"homepage": "https://github.com",
"private": "true",
"has_issues": "true",
"has_projects": "true",
"has_wiki": "true"
}
response = requests.post('https://api.github.com/user/repos', headers=headers, data=data)
это отдает <Response [401]>
{"message":"Requires authentication","documentation_url":"https://d eveloper.github.com/v3/repos/#create"}
А токен ты правильно послал? Обычно хэдер authorization содержит не только токен но и тип его
Authorisation: Bearer и тут токен
Обсуждают сегодня