Я очищаюсь CollectionListing
API от Shopify, и мне нужно передать 'collecton_listing_id'
в качестве параметра в url
. Я передаю идентификатор, но не могу получить ответ в Callback.
Примечание: Я проверил API с параметрами в Почтальоне и работает нормально.
Вот моя реализация.
ProductActivity.java
private void processProductIds() {
apiInterface = APIClient.getClient().create(ApiInterface.class);
Call<List<Integer>> call = apiInterface.getProductIds(key, id);
call.enqueue(new Callback<List<Integer>>() {
@Override
public void onResponse(Call<List<Integer>> call, Response<List<Integer>> response) {
String s = String.valueOf(response.body());
Log.d("S", "onResponse:" + s);
}
@Override
public void onFailure(Call<List<Integer>> call, Throwable t) {
}
});
}
ApiInterface.java
public interface ApiInterface {
@GET("collection_listings/{collection_listing_id}/product_ids.json")
Call<List<Integer>> getProductIds(@Header("Authorization") String accessToken, @Path("collection_listing_id") long id);
}
Модель класса
public class IdExample {
@SerializedName("product_ids")
@Expose
private List<Integer> productIds = null;
public List<Integer> getProductIds() {
return productIds;
}
public void setProductIds(List<Integer> productIds) {
this.productIds = productIds;
}
}
JSON Response
{
"product_ids": [
1331092619350,
1331125551190,
1331126599766,
1331121651798
]
}
Спасибо.