Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Rest APIを使って記事とメディアを連携させたい。
私は記事IDと画像(メディア)からのIDを持っていたので、記事の更新をAPIに送信して画像を更新したいと考えています。
これは可能ですか?
このような?
$article[]=array( 'id'=>'13, 'images'=>array('media_id' => 4) ); $return = $client->put('articles',array($article);
「mediaId」と呼ぶ必要があるため、
$article[] = array( 'id' => '13', 'images' => array( array('mediaId' => 1), array('mediaId' => 2), ) );
これは、メディア アイテムを ID で割り当てる場合に機能するはずです。