카테고리 없음

[PHP] Podio API-새 항목 추가에서 응답 받기

행복을전해요 2021. 2. 7. 08:04

여기에 약간의 튜토리얼이 있습니다 : https://developers.podio.com/examples/items

앱 참조 필드는 값으로 item_id의 배열을 사용하므로 다음을 수행 할 수 있습니다.

PodioItem::create("#######", array(
  'fields' => array(
      'name' => array((int)$_POST['item_id'])
        )
        ));
        

name앱 참조 필드의 external_id가 제공 됩니다!



출처
https://stackoverflow.com/questions/22050237