我想使用Yammer和請求檢索用戶喜歡的信息。我重複獲得401個狀態碼。Yammer API請求返回401
下面是我的代碼:
import json
import requests
import requests.auth
access_token = "mytoken"
headers = {"Authorization": "bearer " + access_token}
response = requests.post("https://www.yammer.com/api/v1/users/liked_message/702068900.json", headers=headers)
me_json = response.json()
return me_json['name']
我不知道我做錯了。
可能是'response.text'會提供一些信息 – Lol4t0
你看過他們的[python SDK](https://developer.yammer.com/docs/python-sdk)嗎? –
文檔用'B'表示'承載者'。你應該嘗試一下。 –