以前この質問でパブリックAPIで複数のchannelの値を取得し利用する方法については理解できました。
(以前の質問:https://teratail.com/questions/330046)
a.py
1import websocket 2import json 3import threading 4import time 5 6key = '' 7secret = '' 8 9private_channels = ['child_order_events', 'parent_order_events'] 10 11class Ticker: 12 13 def __init__(self): 14 self.values = dict(closea=0, closeb=0) 15 16 def start(self): 17 def on_message(ws, message): 18 try: 19 rs = json.loads(message) 20 channel = rs["params"]["channel"] 21 if channel == "lightning_ticker_FX_BTC_JPY": 22 self.values["closea"] = round(float('{ltp}'.format(**(rs["params"]["message"])))) 23 elif channel == "lightning_ticker_BTC_JPY": 24 self.values["closeb"] = round(float('{ltp}'.format(**(rs["params"]["message"])))) 25 else: 26 print("Got other channel data:", channel, rs) 27 except Exception as e: 28 print(e) 29 30 def on_error(ws, error): 31 print(error) 32 33 def on_close(ws): 34 print("### closed ###") 35 36 def on_open(ws): 37 print("### open ###") 38 ws.send(json.dumps([ 39 {'method': 'subscribe', 'params': {'channel': 'lightning_ticker_FX_BTC_JPY'}}, 40 {'method': 'subscribe', 'params': {'channel': 'lightning_ticker_BTC_JPY'}}, 41 {'method': 'subscribe', 'params': {'channel': 'child_order_events'}}, 42 {'method': 'subscribe', 'params': {'channel': 'parent_order_events'}} 43 ])) 44 45 def run(ws): 46 ws.run_forever() 47 48 self.ws = websocket.WebSocketApp("wss://ws.lightstream.bitflyer.com/json-rpc", 49 on_message=on_message, 50 on_error=on_error, 51 on_open =on_open, 52 on_close=on_close) 53 self.th = threading.Thread(target=run,args=(self.ws,)) 54 self.th.start() 55 56 def shutdown(self): 57 self.ws.close() 58 59 60ticker = Ticker() 61ticker.start() 62 63while True: 64 fx = ticker.values["closea"] 65 spot = ticker.values["closeb"] 66 67 print(fx) 68 print(spot) 69 time.sleep(1) 70 71# ticker.shutdown() 72print("end")
今後はAPIキーを用いてプライベートAPIで値を取得したいです。
HTTPはライブラリなどを使ってできるのですが、今回やりたいのはリアルタイムAPIを用いたプライベートの値の取得です。
いろいろ試してみてるのですが、、、認証が入ることによって前回やったパブリックAPIで取得した値との共存させたコードの書き方がわからず困っています。
認証方法についても初心者すぎてわからず、、という感じです。
調べてみようにもどうしらべたらいいかもわからず詰まっている状況です。
def auth(ws): now = int(time.time()) nonce = token_hex(16) sign = hmac.new(self._secret.encode( 'utf-8'), ''.join([str(now), nonce]).encode('utf-8'), sha256).hexdigest() params = {'method': 'auth', 'params': {'api_key': self._key, 'timestamp': now, 'nonce': nonce, 'signature': sign}, 'id': self._JSONRPC_ID_AUTH} ws.send(json.dumps(params))
いろいろ調べてる家庭で認証するような関数をいれ
どこかに認証してAPIキーとかを認証してからチャンネル取得してchild_order_eventsとparent_order_eventsを取得すればいいのかなとためしてみてるのですがどんどんわかんなってきてしまいました。
どのようにすればいいかお伺いできると助かります。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。