Skip to content

Latest commit

 

History

History
executable file
·
36 lines (29 loc) · 569 Bytes

ISSUE_TEMPLATE.md

File metadata and controls

executable file
·
36 lines (29 loc) · 569 Bytes

Title

  • bug: XYZ broken
  • feature: please add
  • enhancement: add this to existing features

Short Description:

  • Unable to get a result from blah

Platform:

  • windows
  • linux
  • macos

php version:

  • 7.0.24

Long descrption

  • Doing xyz results in ypr and failing when fph

code

require 'vendor/autoload.php';
$api = new Binance\API("<api key>","<secret>");
$ticker = $api->prices();
print_r($ticker); // List prices of all symbols
echo "Price of BNB: {$ticker['BNBBTC']} BTC";

result

{
   "result":"result"
}

thank you