How to obtain the click_id of Wechat Advertising

how to get click_id? when Wechat put an advertisement on the public platform Recently, I was doing an advertisement for Wechat, and I found that I couldn"t get click_id,. I don"t know which god had done Wechat"s advertisement! Can you give me some advice!

Jan.08,2022

var options = wx.getLaunchOptionsSync ();
this.scene = options.scene;
if (options.referrerInfo & & options.referrerInfo.appId) {

this.referrerInfo_appId = options.referrerInfo.appId;

}
if (options & & options.weixinadinfo) {

this.aid = options.weixinadinfo;

}
if (query & & query.weixinadinfo) {

this.aid = query.weixinadinfo;

}

/
weixinadinfo: Advertising adinfo, is composed of other parameters. The value is aid.traceid.scene_type.0,aid: the advertisement id, generated when Wechat's advertising terminal creates an advertisement, i.e. click_id

.
Menu