yumeng 7 ヶ月 前
コミット
c5c97df58d

+ 4 - 0
src/main/java/cn/com/ctop/track/controller/TrackController.java

@@ -151,6 +151,7 @@ public class TrackController {
             String cid = request.getParameter("cid"); // ⼴告创意ID
             String callback = request.getParameter("callback"); // ⼴告创意ID
             String code = request.getParameter("code"); // 编号
+            String timestamp = request.getParameter("timestamp"); // 编号
             Map<String, String> headers = new HashMap<>();
             TreeMap<String, Object> params = new TreeMap<>();
             params.put("action", action);
@@ -181,6 +182,9 @@ public class TrackController {
             if (!Check.isNull(cid)) {
                 params.put("cid", cid);
             }
+            if (!Check.isNull(timestamp)) {
+                params.put("timestamp", timestamp);
+            }
             params.put("accountid", "35861772");
 
             if (!Check.isNull(callback)) {