DCS API方法 dcs-api-methods

使用GETPOST方法將資料傳送至DCS API。

您可以使用GETPOST方法之一將資料傳送至DCS。 使用curl,檢視下列範例呼叫。 在所有三個範例呼叫中,我們將訊號c_likes = famous popstarc_loves = famous actress新增至裝置設定檔12345678901234567890123456789012345678

透過GET傳送資料 send-data-via-get

請注意,GET個呼叫允許的大小上限為8K。

curl -i "yourcompany.demdex.net/event?d_uuid=12345678901234567890123456789012345678&d_rtbd=json&c_likes=famous%20popstar&c_loves=famous%20actress"

透過POST傳送資料 send-data-via-post

注意使用POST方法傳送資料的需求:

  • 允許的大小上限為32K。
  • 將內容型別設定為application/x-www-form-urlencoded

呼叫範例

curl -X POST \
  https://yourcompany.demdex.net/event \
  -H 'content-type: application/x-www-form-urlencoded' \
  -d 'c_likes=famous%20popstar&c_loves=famous%20actress&d_uuid=12345678901234567890123456789012345678'
recommendation-more-help
de293fbf-b489-49b0-8daa-51ed303af695