#!/usr/bin/perl
use strict;
use warnings;
use JSON qw( decode_json );
use LWP::Simple;
my $cavirtex = get('https://www.cavirtex.com/api2/orderbook.json?currencypair=BTCCAD');
print $cavirtex;
Run Code Online (Sandbox Code Playgroud)
编译时,我得到......
在cavirtex.pl第9行打印时使用未初始化的值$ cavirtex.
更多信息:https: //www.cavirtex.com/api_information#orderbook
谢谢.
编辑/更多信息:在我的程序中,当我替换...
https://www.cavirtex.com/api2/orderbook.json?currencypair=BTCCAD
Run Code Online (Sandbox Code Playgroud)
与...
https://www.bitstamp.net/api/ticker/
Run Code Online (Sandbox Code Playgroud)
它工作得很好.奇怪的.