RubyとBC APIの新機能ですので、私が紛失している可能性があります。私は私の店のレガシーAPIの資格情報に置き換え、適切な詳細を、次のコード実行しているとき:RubyでBigcommerce APIに接続しようとするとエラーが発生する
require 'bigcommerce'
Bigcommerce.configure do |config|
config.auth = 'legacy'
# You will get this url when registering for an API key
config.url = ENV['BC_API_ENDPOINT_LEGACY']
config.username = ENV['BC_USERNAME']
config.api_key = ENV['BC_API_KEY']
end
puts Bigcommerce::System.time
を私は次のエラーを取得する:
.../lib/ruby/2.3.0/net/http.rb:882:in `rescue in block in connect': Failed to open TCP connection to :80 (Connection refused - connect(2) for nil port 80) (Faraday::ConnectionFailed)
私は任意のポインタを感謝しています。