Я интегрирую отгрузку в мое приложение, используя API Easy Post, когда я использую shipment.create(shipmentMap, EASYPOSTAPIKEY)
. Это выдает ошибку. Ожидается строка, но в строке 1 столбца 123 путь $.options
.
НИЖЕIS МОЙ КОД
Map<String, Object> parcelMap = new HashMap<String, Object>();
parcelMap.put("predefined_package", "FlatRateEnvelope");
parcelMap.put("weight", 10);
Parcel parcel = Parcel.create(parcelMap);
Map<String, Object> shipmentMap = new HashMap<String, Object>();
shipmentMap.put("to_address", toAddress);
shipmentMap.put("from_address", fromAddress);
shipmentMap.put("parcel", parcel);
Shipment shipment = Shipment.create(shipmentMap, EASYPOSTAPIKEY);
java.lang.IllegalStateException: ожидаемая строка, но была BEGIN_OBJECT в строке 1 столбца 123 путь $ .options.at com.google.gson.stream.JsonReader.nextString (JsonReader.java:825) ~ [gson-2.8.5.jar: na]