I can't get right price of BTCUSD_PERP by using subscribe function.

I am trying to get simillar ask and bid price of BTCUSD_PERP with binance website by using future api.
I imported binance_d library.
When I use request function, I got simillar prie of BTCUSD.
I attached sample code to compare the price.
Could you check ask and bid price?

sub_client = SubscriptionClient(api_key=g_api_key, secret_key=g_secret_key)
sub_client.subscribe_symbol_bookticker_event(“btcusd_perp”, callback, error)

request_client = RequestClient(api_key=‘xxxx’, secret_key=‘xxxx’,url=‘https://dapi.binance.com’)
result = request_client.get_order_book(symbol = “btcusd_perp”, limit = 10)

Looking good to me.
Please give more details regarding why you think they’re different

Need to specify uri in it

thx for the reply.
which url should I use for subscribe
I think that I am using the default url in the binance_d module( wss://dstream.binancefuture.com/ws)

======= result of request ============
{“lastUpdateId”:21004066304,“E”:1609378551126,“T”:1609378551119,“symbol”:“BTCUSD_PERP”,“pair”:“BTCUSD”,“bids”:[[“28642.5”,“2944”],[“28642.2”,“20”],[“28641.8”,“128”],[“28641.0”,“32”],[“28640.9”,“80”],[“28640.8”,“80”],[“28640.7”,“80”],[“28640.6”,“80”],[“28640.5”,“116”],[“28640.0”,“79”]],“asks”:[[“28642.6”,“102”],[“28643.4”,“3”],[“28645.2”,“15”],[“28645.3”,“34”],[“28645.4”,“80”],[“28645.5”,“80”],[“28645.6”,“80”],[“28645.7”,“80”],[“28645.8”,“80”],[“28645.9”,“80”]]}
======= result of subsribe. ============
{“u”:1167049199,“e”:“bookTicker”,“s”:“BTCUSD_PERP”,“ps”:“BTCUSD”,“b”:“25325.0”,“B”:“3”,“a”:“25325.7”,“A”:“3”,“T”:1609378551398,“E”:1609378551410}

result of request is 28642 but result of subsribe is 25325.

sub_client = SubscriptionClient(
api_key=‘xxx’,
secret_key=‘xxx’,
uri=‘wss://dstream.binance.com/ws’,
is_auto_connect=True
)

OMG!!! Thx for your support!!
I mean it!!