From f93078afdadde3f7cca73252b6a4eab0fe5996fa Mon Sep 17 00:00:00 2001 From: rq4w7z <4github@riseup.net> Date: Thu, 4 Jan 2018 22:25:40 +0700 Subject: [PATCH] 403 error fixed --- python_pip_examples/ticker.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python_pip_examples/ticker.py b/python_pip_examples/ticker.py index 27e9616..c3f17f8 100644 --- a/python_pip_examples/ticker.py +++ b/python_pip_examples/ticker.py @@ -5,7 +5,7 @@ secret_key = '' or input('Enter your secret key: ') public_key = '' or input('Enter your public key: ') - restful_client = RestfulClient(secret_key, public_key) + restful_client = RestfulClient(public_key, secret_key) ticker_all_local = restful_client.ticker_all_local(crypto='LTC', fiat='GBP') print('ticker all local') @@ -49,4 +49,4 @@ ticker_changes_global_btceur = restful_client.ticker_changes_global('BTCEUR') print('Ticker including changes (for BTCEUR):') - print(ticker_changes_global_btceur) \ No newline at end of file + print(ticker_changes_global_btceur)