0

私はワードプレスの投稿メタと残りのAPIを使用しています.「picture_collection」と呼ばれるメタフィールドを残りに公開しました。これは、データを整数の配列として保存し、すべての数字が添付ファイルのIDを表します. 次に、次のように、添付ファイル ID の代わりにリンクのリストを提供するように API に問い合わせる際の応答を変更しました。

    function get_pic_coll ($object, $field_name, $request) {
        include_once dirname(__FILE__) . '/attach_coll.php';
        $pic_coll = get_post_meta ($object['id'], $field_name, true);
        $json_coll = array();
        if($pic_coll != null || !empty($pic_coll)){
            foreach ($pic_coll as $pic){
                $media_id = $pic;
                $link_med = wp_get_attachment_image_src($media_id, 'medium');
                $link_full = wp_get_attachment_image_src($media_id, 'full');
                $medium_size = $link_med[0];
                $full_size = $link_full[0];
                $obj = new attach_coll($media_id, $medium_size, $full_size);
                $element = $obj->return_coll_object();
                $json_coll[] = $element;
            }
            return $json_coll;
        }
    }

attach_coll オブジェクトは次のとおりです。

class attach_coll{
public function __construct($media_id, $medium_url, $orig_url){
    $this->attach_id = $media_id;
    $this->medium_size_pic = $medium_url;
    $this->full_size_pic = $orig_url;
}

private $attach_id;
private $medium_size_pic;
private $full_size_pic;

public function get_media_id(){
    return $this->attach_id;
}
public function get_medium_pic(){
    return $this->medium_size_pic;
}
public function get_orig_pic(){
    return $this->full_size_pic;
}
public function return_coll_object(){
    $ret_coll = array(
            "ID"     => $this->get_media_id(),
            "medium" => $this->get_medium_pic(),
            "full"   => $this->get_orig_pic()
    );
    return $ret_coll;
}

}

Java 側の処理は次のようになります。1) ユーザーが写真を作成してアップロードすると、Integers ArrayList 内に保存されている添付ファイルの ID と引き換えに受け取ります。2) プログラムの更新が完了したら、リスト全体を API に渡して post_meta を更新します。3) プログラムは、カスタム フィールドを含む投稿全体を含む json として応答を受け取ります。次のようになります。

{...
   "id":"someValue",
   "title":"myTitle",
   "pic_collection":[ {'ID':'picID','mediumSizePic':'someUrl', 'FullSizePic':'SomeOtherUrl},{...}],

私が期待していたjsonをResponseBodyから見ると、phpコードはうまく機能します。問題は、pojoが次のように定義されているため、論理的な「gson expected a Integer and found an Object」というエラーが発生することです。

@SerializedName("pic_collection")
private List<Integer> idList = new ArrayList<Integer>();
public void setList(List<Integer> list){
this.idList=list;
}

リストを次のように変更しようとしました。

List<PicCollection> picList = new ArrayList<PicCollection>();
public class PicCollection{
@SerializedName("ID")
private int picId;
@SerializedName("medium_size")
private String medSizeUrl;
@SerializedName("full_size")
private String fullSizeUrl;
Getters and Setters
}

しかし、それはすべてを複雑にし、問題を解決しませんでした. ID を設定するコードの概要:

iterator=idList.iterator;
while(iterator.hasNext()){
 FotoCollection fc = new FotoCollection();
 fc.ID = iterator.next

問題を解決するにはどうすればよいですか? カスタムコンバーターが必要ですか?

4

1 に答える 1