You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/connections/destinations/catalog/appsflyer/index.md
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -132,7 +132,7 @@ To activate this feature, simply input your S2S token in the destination setting
132
132
133
133
### Send User Consent Preferences Server-side
134
134
135
-
To transmit user consent data serverside, simply incorporate the consent preferences into the `integrations.AppsFlyer.consent_data`` object. This can be done in either TCF or manual format, as outlined in [the AppsFlyer documentation](https://dev.appsflyer.com/hc/reference/s2s-events-api3-post){:target="_blank”}.
135
+
To transmit user consent data server-side, incorporate the consent preferences into the `integrations.AppsFlyer.consent_data` object. This can be done in either TCF or manual format, as outlined in [the AppsFlyer Send Event documentation](https://dev.appsflyer.com/hc/reference/s2s-events-api3-post){:target="_blank”}.
136
136
137
137
```js
138
138
// node.js library example with tcf
@@ -188,31 +188,31 @@ analytics.track({
188
188
189
189
## Identify
190
190
191
-
If you're not familiar with the Segment Specs, take a look to understand what the [Identify method](/docs/connections/spec/identify/) does. An example iOS call would look like:
191
+
If you're not familiar with the Segment Spec, take a look to understand what the [Identify method](/docs/connections/spec/identify/) does. An example iOS call would look like:
When you call `.identify()`, Segment uses AppsFlyer's `setCustomerUserID` to send the `userId` that was passed in.
198
+
When you call Identify, Segment uses AppsFlyer's `setCustomerUserID` to send the `userId` that was passed in.
199
199
200
-
**Note:**`identify` calls are not supported using AppsFlyer's HTTP API at the moment. You can only send `.identify` calls if you have the AppsFlyer SDK bundled.
200
+
**Note:**Identify calls are not supported using AppsFlyer's HTTP API at the moment. You can only send `.identify` calls if you have the AppsFlyer SDK bundled.
201
201
202
202
## Track
203
203
204
-
If you're not familiar with the Segment Specs, take a look to understand what the [Track method](/docs/connections/spec/track/) does. An example iOS call would look like:
204
+
If you're not familiar with the Segment Spec, take a look to understand what the [Track method](/docs/connections/spec/track/) does. An example iOS call would look like:
properties:@{ @"title": @"How to Create a Tracking Plan", @"course": @"Intro to Analytics" }];
209
209
```
210
210
211
-
When you call `track`, Segment translates it automatically and sends the event to AppsFlyer.
211
+
When you call Track, Segment translates it automatically and sends the event to AppsFlyer.
212
212
213
-
Segment includes all the event properties as callback parameters on the AppsFlyer event, and automatically translate`properties.revenue` to the appropriate AppsFlyer purchase event properties based on the spec'd properties.
213
+
Segment includes all the event properties as callback parameters on the AppsFlyer event, and automatically translates`properties.revenue` to the appropriate AppsFlyer purchase event properties based on the spec'd properties.
214
214
215
-
Finally, Segment uses AppsFlyer's `transactionId` deduplication when you send an `orderId` (see the[e-commerce spec](/docs/connections/spec/ecommerce/v2/)).
215
+
Segment uses AppsFlyer's `transactionId` deduplication when you send an `orderId` (see Segment's[e-commerce spec](/docs/connections/spec/ecommerce/v2/) for more details).
0 commit comments