AmauryBuguet / binance_spot

MIT License
10 stars 9 forks source link

API key is missing #1

Closed EngrMubasharAli closed 2 years ago

EngrMubasharAli commented 2 years ago

hi, i got error Missing API key, same API key i tried on Postman, and its working

vtthinh commented 2 years ago

I fixed it. Open binance_spot_api.dart then edit BinanceSpot({String? key, String? secret}):

BinanceSpot(String? key, String? secret){ this._apiKey = key; this._apiSecret = secret; }

AmauryBuguet commented 2 years ago

Hi thanks for the fix, it should be ok now. Don't hesitate to add the lib to your project like this :

  binance_spot:
   git: https://github.com/AmauryBuguet/binance_spot

in order to have the latest version (and run flutter pub upgrade when there are new commits).