Hi,
I’m trying to use this method :
POST /wapi/v3/withdraw.html (HMAC SHA256)
Issue :
-9000=illegal parameter
I use PHP wrapper, and I have succeed to use Balance, Order, Price method for exemple. So I assume that every parameters are built, and send correctly, to the right endpoint.
The adress is valid, founds are available.
// POST array()
Array ( [asset] => ETH [adress] => 0x6d16Dc64a9885b45Bad7c2046e88Ad********** [amount] => 0.03 [recvWindow] => 50000 [timestamp] => 1611408782989 [signature] => 19d7669948082a4cf6df508a596bce4d3d2322d5852c5c56b8a1c74b24ce855a )
// curl_getinfo() (what I send)
Array ( [url] => https://api.binance.com/wapi/v3/withdraw.html?asset=ETH&adress=0x6d16Dc64a9885b45Bad7c2046e88Ad**********&amount=0.03&recvWindow=50000×tamp=1611408782989&signature=19d7669948082a4cf6df508a596bce4d3d2322d5852c5c56b8a1c74b24ce855a [content_type] => application/json;charset=UTF-8 [http_code] => 200 [header_size] => 858 [request_size] => 452 [filetime] => -1 [ssl_verify_result] => 0 [redirect_count] => 0 [total_time] => 0.597427 [namelookup_time] => 0.065727 [connect_time] => 0.10975 [pretransfer_time] => 0.261898 [size_upload] => 0 [size_download] => 49 [speed_download] => 82 [speed_upload] => 0 [download_content_length] => 49 [upload_content_length] => -1 [starttransfer_time] => 0.597321 [redirect_time] => 0 [redirect_url] => [primary_ip] => 52.84.150.39 [certinfo] => Array ( ) [primary_port] => 443 [local_ip] => 192.168.1.3 [local_port] => 53972 )
// Response
Array ( [msg] => -9000=illegal parameter [success] => )
Does anyone have a clue on what’s going on ?
If you need further informations, I’ll give you everything needed.
Thank’s for your advice,