2017-06-21 56 views
1

我無法使用獲取請求授權從對講機訪問用戶。這是我做了什麼:對講集成驗證python

import requests 
headers = { 
    'Authorization': 'Bearer {my accsess token}', 
    'Accept': 'application/json', 
    'Content-Type': 'application/json', 
} 
res = requests.get("https://api.intercom.io/users",headers=headers) 

錯誤我得到:

{ 「代碼」: 「token_unauthorized」, 「消息」: 「未授權訪問 資源」}

請告訴我我做錯了什麼。 在此先感謝。這裏從支持團隊對講

訪問令牌的對講REST API

回答

0

我遇到了這個問題,這是由於我的'https://app.intercom.io/oauth'URL輸入錯誤。這很難調試,因爲重定向URL是在申請代碼時輸入到先前的命令中,以獲取不記名令牌。就我而言,由於我在申請OAuth時擁有默認的重定向網址,因此我只把我的呼叫中的重定向網址放到了'https://app.intercom.io/oauth'。