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: README.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -517,7 +517,7 @@ You should use **callback parameters** for the values that you collect for your
517
517
518
518
You can register a callback URL for your events in your [dashboard]. We will send a GET request to that URL whenever the event is tracked. You can add callback parameters to that event by calling `addCallbackParameter` to the event instance before tracking it. We will then append these parameters to your callback URL.
519
519
520
-
For example, suppose you have registered the URL `http://www.adjust.com/callback` then track an event like this:
520
+
For example, suppose you have registered the URL `https://www.adjust.com/callback` then track an event like this:
521
521
522
522
```dart
523
523
AdjustEvent adjustEvent = new AdjustEvent('abc123');
In that case we would track the event and send a request to:
530
530
531
531
```
532
-
http://www.adjust.com/callback?key=value&foo=bar
532
+
https://www.adjust.com/callback?key=value&foo=bar
533
533
```
534
534
535
535
It should be mentioned that we support a variety of placeholders like `{gps_adid}` that can be used as parameter values. In the resulting callback this placeholder would be replaced with the Google Play Services ID of the current device. Also note that we don't store any of your custom parameters, but only append them to your callbacks. If you haven't registered a callback for an event, these parameters won't even be read.
@@ -1119,7 +1119,7 @@ If you want to use the Adjust SDK to recognize users whose devices came with you
1119
1119
```dart
1120
1120
adjustConfig.defaultTracker = '{TrackerToken}';
1121
1121
```
1122
-
Replace `{TrackerToken}` with the tracker token you created in step 1. Please note that the Dashboard displays a tracker URL (including `http://app.adjust.com/`). In your source code, you should specify only the six-character token and not the entire URL.
1122
+
Replace `{TrackerToken}` with the tracker token you created in step 1. Please note that the Dashboard displays a tracker URL (including `https://app.adjust.com/`). In your source code, you should specify only the six-character token and not the entire URL.
1123
1123
1124
1124
- Build and run your app. You should see a line like the following in your LogCat:
1125
1125
@@ -1233,8 +1233,8 @@ adjustConfig.urlStrategy = AdjustConfig.DataResidencyTR; // for Turkey data resi
1233
1233
adjustConfig.urlStrategy = AdjustConfig.DataResidencyUS; // for US data residency region
1234
1234
```
1235
1235
1236
-
[dashboard]: http://adjust.com
1237
-
[adjust.com]: http://adjust.com
1236
+
[dashboard]: https://adjust.com
1237
+
[adjust.com]: https://adjust.com
1238
1238
1239
1239
[example-app]: example
1240
1240
@@ -1249,14 +1249,14 @@ adjustConfig.urlStrategy = AdjustConfig.DataResidencyUS; // for US data residenc
0 commit comments