尝试检索印度邮政的运费,但不知道如何。我正在关注Getting Started指南。
to_address = EasyPost::Address.create(
:name => 'Dr. Steve Brule',
:street1 => 'Ravindra Nath Tagore Marg',
:city => 'Nagpur',
:zip => '440001',
:country => 'IN',
:phone => '310-808-5243'
)
from_address = EasyPost::Address.create(
:company => 'Bera',
:street1 => 'Johari Bazar 14',
:city => 'Jaipur',
:country => 'IN',
:zip => '302003',
:phone => '911800112011'
)
parcel = EasyPost::Parcel.create(
:width => 15.2,
:length => 18,
:height => 9.5,
:weight => 35.1
)
shipment = EasyPost::Shipment.create(
:to_address => to_address,
:from_address => from_address,
:parcel => parcel,
)
rate = shipment.lowest_rate(carriers = ['India Post'], services = ['First'])
发货不包含任何费率,无法弄清楚此示例中哪些不正确。
答案 0 :(得分:1)