DCS API方法 dcs-api-methods
使用GET
或POST
方法將資料傳送至DCS API。
您可以使用GET
或POST
方法之一將資料傳送至DCS。 使用curl,檢視下列範例呼叫。 在所有三個範例呼叫中,我們將訊號c_likes = famous popstar
和c_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