正如標題中提到,我使用python V3.6我如何包括了Python(3.6)Coinbase API CB-VERSION頭
我試圖使用coinbase API來創建一個Python應用程序和我代碼我有
import coinbase
coinbase = coinbase.Coinbase.with_api_key('key','key') #Replacing the 'key's with my associated keys
,當我試圖讓函數調用
coinbase.get_user()
我得到的錯誤
coinbase.error.CoinbaseAPIException: ('Status Code 404', 404, '{"errors":[{"id":"not_found","message":"Not found"}],"warnings":[{"id":"missing_version","message":"Please supply API version (YYYY-MM-DD) as CB-VERSION header","url":"https://developers.coinbase.com/api#versioning"}]}')
我去了前面提到的網站,發現了CB-VERSION頭文件,我不知道如何實現這一點,我嘗試過的每一種方法都失敗了,導致我得到相同的錯誤信息。
您正在導入哪個版本的'coinbase'軟件包? –
Im使用coinbase API v2 – Zac
請問哪個版本的軟件包?你在哪裏得到它? –