如何连接 API Printify 与 django

how to connect API Printify with django

我在使用 django 连接到 printify api 时遇到问题,我不是很实际所以我需要了解为什么以及最重要的是要作为参数传递什么

观看次数:

def home(request):
    token = settings.TOKEN_PRINTIFY
    headers = {'Content-Type': 'application/json', 'Authorization' : 'Bearer ' + token}
    response = requests.get('https://api.printify.com/v1/shops', headers = headers)
    print('-----------------', response) #error 404

    context = {}
    return render(request, 'home.html', context)

它给我的响应是 401 状态,我不知道该把令牌放在哪里

这些不是参数而是 headers 将 params=payload 替换为:

{headers: {'Content-Type': 'application/json', Authorization : 'Bearer ' + token}}