The most recent content from our members.
I’m trying to track the events of users who are not authenticated with the help of amplitude. Clearly, the userId field is optional, and can be passed as undefined. ampli.propertySearchPerformed(undefined, { props }) But, when I do so - I got runtime error - “Request missing required field”. I’ve tried with ampli wrapper…
Hi :) We have 2 environments at the moment, events are being sent to the correct environments whilst using the analytics-browser sdk. However I can’t find anything on how to change the environment events go to whilst using the node sdk? Bit of background I’m using nextjs to send events from the client and api routes hence…
Hello, I'm planning to use the Node.js SDK to send Revenue events as they're processed by my payment system. However, I've encountered a couple of challenges that I need some guidance on: * IP Address Tracking: The Revenue events are being logged with my server's IP address. Since all events originate from the server, they…
We have a requirement where we pass city to amplitude in the fetch() API call when experiments are initialized. We want the experiments to be created based on the city value that we passed, and not from what amplitude reads from the IP address. We do not want to use the city based on IP address since it is not accurate…
In Data > Properties > User Properties, we are seeing User property names we implemented but we’re not seeing any data in those properties. We are sending the same property as an Event property and the value is showing up. Using the Node SDK from our backend. Scratching our heads. Any help would be appreciated😃
Greetings, I’m wondering how to implement Amplitude in Electron application (Node.js desktop app). Are there yet any best practices? Should I implement tracking using Node.js SDK in Electron main process or Javascript SDK in renderer process? Kind regards!
I am using standard node.js sdk to log an event with the following code: // ES5 Syntax<br />const Amplitude = require('@amplitude/node');<br />// ES6 Syntax<br />import * as Amplitude from '@amplitude/node';<br /><br />var client = Amplitude.init(<AMPLITUDE_API_KEY>);<br />client.logEvent({<br /> event_type: 'Node.js…
I have 1 test project and 1 production. After a proper configuration and tests, we’ve launched analytics in our application, but over some time, some events stopped working at the beginning on test project and a little bit later on production. Limits data is fine. More over most of the events are still coming. Event Limit…
I am using NodeJS SDK to insert events and event_properties using HTTP API v2, and user_properites using identify My sample code block looks as below import { Identify } from '@amplitude/identify' import * as Amplitude from '@amplitude/node' const client = Amplitude.init(amplitude_api); const identify = new Identify();…
It looks like you're new here. Sign in or register to get started.