Skip to content
adscapi

Weibo CAPI Payload Preview

The server-side request adscapi builds when you track() a purchase and Weibo is configured. Secrets and hashed values show as placeholders.

Request

GET
Endpoint
https://api.biz.weibo.com/v3/track/activate?time=1739452800000&behavior=1007&mark_id=markid-example-123&host={WEIBO_HOST}
Headers
Authorization: Bearer {WEIBO_TRACK_TOKEN}

No request body — every parameter travels in the endpoint URL.

Verified against the library dispatcher (src/dispatchers/weibo.ts). See the Weibo setup guide for where to get each secret.

Required secrets

WEIBO_TRACK_TOKEN

Weibo activates when every secret is present. One missing key and the platform no-ops — the rest still receive the event.

Event-name mapping

Canonical eventWeibo receives
page_view1005
lead1001
signup_startsignup_start (custom event passthrough)
signup1001
checkout_createdcheckout_created (custom event passthrough)
purchase1007
reply_generatedreply_generated (custom event passthrough)
upgrade_clickedupgrade_clicked (custom event passthrough)

Good to know

  • GET with query params; the OAuth2 token goes in the Authorization header. The mark_id click id is the only attribution key; Weibo takes no PII.
  • time is epoch milliseconds; Weibo drops events older than 2 hours as natural traffic.
  • behavior is a numeric action code; unmapped canonical events fall back to 1100 (other).
  • host comes from WEIBO_HOST or the event page URL's host. The callback carries no revenue field; purchase value is not sent.

Frequently Asked Questions

Related Tools

Discover more free tools to fix your tracking

Event Payload Playground

Pick a canonical conversion event, fill the fields, and see the exact JSON payload adscapi builds — before you write a line of code.

Try it now

PII Hash Previewer

Type a raw email or phone number and see the normalized value plus its SHA-256 hash — the exact rules adscapi applies per platform. Nothing leaves the browser.

Try it now

Platform Coverage Explorer

Search all 26 ad platforms adscapi dispatches to — support level, required secrets, and setup docs, always in sync with the library registry.

Try it now

Ready to track Weibo conversions server-side?

adscapi is free and open source. Set your platform tokens, call track() once, and every configured Conversions API receives the event — hashed the way each platform expects.