https://linen.dev logo
Join Slack
Powered by
# ask-ai
  • h

    hundreds-lifeguard-65770

    12/05/2023, 3:13 PM
    @faint-answer-25305 how do i ensure rudderstack loads 1st party
    b
    s
    • 3
    • 4
  • t

    thankful-gpu-70135

    12/11/2023, 7:27 AM
    @faint-answer-25305 how do I log a message for debugging when editing a transformation?
    b
    • 2
    • 2
  • a

    able-insurance-93708

    12/11/2023, 3:32 PM
    Hi, I am facing issue with CROS policy
  • m

    most-ocean-90575

    12/18/2023, 9:35 AM
    @faint-answer-25305 How can I check for connections debug logs?
    b
    • 2
    • 3
  • t

    thankful-gpu-70135

    12/19/2023, 3:44 AM
    @faint-answer-25305 I'm trying to configure "Category Mapping" for the Facebook Conversions API destination. It's asking me to specify mappings for "Rudderstack Category". Where do I find a list of what these are?
    b
    • 2
    • 5
  • t

    thankful-gpu-70135

    12/20/2023, 8:50 AM
    @faint-answer-25305 We've got data flowing into Facebook Conversion API destination. i've mapped specific event for our purchases and in the FB event manager, I'm seeing this summary in the screenshot. problems: •
    num_items
    is being set to 0 for some reason •
    content_ids
    is a string, when it should be an array. Rudderstack is doing some type of automated translation and mapping here that I don't understand. Looking into the documentation, we aren't doing anything special for our checkout completed events to match these attributes. is that why? https://www.rudderstack.com/docs/event-spec/ecommerce-events-spec/ordering/#order-completed
    b
    • 2
    • 2
  • t

    thankful-gpu-70135

    12/21/2023, 5:33 PM
    @faint-answer-25305 We are sending an event into rudderstack called
    Subscription Started
    as that is our custom event name for when a purchase happens. We want this exact event name downstream in some of our destinations. However, it seems that Rudderstack expects us to send order completed type events named as
    Order Completed
    so it is a special event and knows how to translate this to certain destinations. How should I handle this? • Should I create a transformation that renames this event to
    Order Completed
    for certain destinations like Facebook Conversion API? • Should I have our source send 2 copies of the same event, one named
    Subscription Started
    and another as
    Order Completed
    ?
    b
    • 2
    • 5
  • t

    thankful-gpu-70135

    12/25/2023, 7:04 AM
    @faint-answer-25305 in the documentation for common fields, it says to pass in user id as
    userId
    . However, I notice that if i pass in
    user_id
    it also seems to be recognized as user ID automatically. is that expected?
    b
    • 2
    • 8
  • t

    thankful-gpu-70135

    12/26/2023, 12:54 AM
    @faint-answer-25305 in the ruby sdk the user id is expected to be passed in as
    user_id
    . The client.rb file in the ruby SDK has this comment which confirms it: "@option attrs [String] :user_id The ID for this user in your database # (optional but you must provide either an
    anonymous_id
    or
    user_id
    )" For other common traits like a user's last name, should I pass them in as
    last_name
    or as documented here as
    lastName
    ? https://www.rudderstack.com/docs/event-spec/standard-events/common-fields/
    b
    • 2
    • 2
  • s

    shy-kite-21035

    12/29/2023, 9:27 AM
    @faint-answer-25305 what is the best way to send sensitive information from client side while using the RudderStack android SDK?
    b
    • 2
    • 2
  • s

    shy-kite-21035

    12/29/2023, 9:30 AM
    @faint-answer-25305 can I update the headers that are sent along with the event when using the RudderStack Android SDK?
    b
    • 2
    • 2
  • s

    shy-kite-21035

    12/29/2023, 9:32 AM
    @faint-answer-25305 when was the Shopify extract source released by RudderStack?
    b
    • 2
    • 2
  • s

    shy-kite-21035

    12/29/2023, 9:34 AM
    @faint-answer-25305 does rudderstack support client side hashing for its Android SDK source?
    b
    • 2
    • 2
  • t

    thankful-gpu-70135

    01/06/2024, 1:40 AM
    @faint-answer-25305 how should the JSON payload be structured when sending a track event in through a webhook source?
    b
    • 2
    • 9
  • t

    thankful-gpu-70135

    01/08/2024, 4:54 PM
    @faint-answer-25305 Give me an exact example of a request I can send to rudderstack as a webhook source
    b
    • 2
    • 17
  • t

    thankful-gpu-70135

    01/08/2024, 5:12 PM
    @faint-answer-25305 what are the property names are for providing the event datetime and the event id in an event to a webhook?
    b
    • 2
    • 2
  • t

    thankful-gpu-70135

    01/09/2024, 12:12 AM
    @faint-answer-25305 I'm having trouble with sending payload to a webhook payload is this:
    Copy code
    {
      "type": "track",
      "event": "Upgrade CTA [Discounts] Clicked",
      "originalTimestamp": "2024-01-08 23:16:51.589000",
      "userId": "5476",
      "request_ip": "24.143.104.2",
      "context": {
        "traits": {
          "email": "test@bigcartel.com"
        }
      }
    }
    Rudderstack is taking the context.traits and putting them underneath `properties`:
    Copy code
    {
      "anonymousId": "c3486529-fdb2-4793-93be-95d86a26f8ed",
      "event": "webhook_source_event",
      "messageId": "d9192b61-f628-4fb4-a4e6-80e2aadb444d",
      "properties": {
        "context": {
          "traits": {
            "Email": "test@bigcartel.com"
          }
        },
        "event": "Upgrade CTA [Discounts] Clicked",
        "originalTimestamp": "2024-01-08 23:16:51.589000",
        "request_ip": "24.143.104.2",
        "type": "track",
        "userId": "5476"
      },
      "rudderId": "6b8fa3fa-3a74-49eb-a441-f8d5d2557f97",
      "type": "track"
    }
    b
    • 2
    • 7
  • t

    thankful-gpu-70135

    01/09/2024, 4:15 AM
    @faint-answer-25305 For facebook conversion API destination, i need to send phone number for the users. Is there a common field name i should be using for the event I send from my sources?
    b
    • 2
    • 5
  • t

    thankful-gpu-70135

    01/12/2024, 5:22 AM
    @faint-answer-25305 if sending device id through a track call to the HTTP API, what is the field name?
    b
    • 2
    • 2
  • v

    victorious-furniture-32554

    02/01/2024, 1:21 PM
    @faint-answer-25305 Connecting Singular to Rudderstack shows error - "Missing required value from \"properties.asid\"" but properties.asid is not supportd in flutter. How do we solve this?
    b
    • 2
    • 2
  • f

    fancy-flag-11171

    02/08/2024, 6:34 PM
    In device mode destinations is it possible to filter non identified users using client side event filtering ?
  • g

    gentle-petabyte-80785

    02/12/2024, 4:59 PM
    @faint-answer-25305 How to send event from php to rudderstack using fork_curl?
    b
    a
    • 3
    • 7
  • g

    gentle-petabyte-80785

    02/13/2024, 4:57 PM
    @faint-answer-25305 how to debug dropped events
    b
    • 2
    • 2
  • r

    rough-potato-51348

    02/20/2024, 1:40 AM
    @faint-answer-25305 add Shopify product tags to Shopify source Product Viewed event
    b
    • 2
    • 2
  • c

    calm-plumber-84231

    02/22/2024, 7:14 PM
    @faint-answer-25305 how to track google ads click id
    b
    • 2
    • 2
  • c

    calm-plumber-84231

    02/22/2024, 7:20 PM
    @faint-answer-25305 how does Rudderstack remain compliant with GDPR rules?
    b
    • 2
    • 2
  • s

    shy-kite-21035

    02/27/2024, 5:11 PM
    @faint-answer-25305 what is url, referrer and tab_url in RudderStack?
    b
    • 2
    • 2
  • s

    shy-kite-21035

    03/08/2024, 1:00 PM
    @faint-answer-25305 what is the values the channel key can take in RudderStack?
    b
    • 2
    • 2
  • s

    shy-kite-21035

    03/08/2024, 1:02 PM
    @faint-answer-25305 what is the distinct values the common field of channel can take in RudderStack?
    b
    • 2
    • 2
  • t

    thankful-gpu-70135

    03/16/2024, 11:46 PM
    @faint-answer-25305 I'm trying to use the keyword
    await
    in a javascript transformation but getting the error "SyntaxError: Unexpected reserved keyword"
    b
    • 2
    • 2