0
https://developers.pipedrive.com/docs/api/v1/#!/Files/post_files 不顯示請求示例,我無法通過python發送POST請求。在pipedrive中附加文件
我的錯誤是:「沒有文件規定」
也許有人有這個請求的例子嗎?
我的代碼:
import requests
with open('qwerty.csv', 'rb') as f:
r = requests.post('https://api.pipedrive.com/v1/files',
params={'api_token': 'MY_TOKEN'}, files={'file': f})
不,同樣的錯誤。 –
你使用這個API端點嗎?也許你有一些原始請求的例子? –
對不起,我從來沒有使用過它,但這就是我通常使用請求庫將文件上傳到api的方式。 – Ilhicas