Skip to content

Commit f0d183c

Browse files
committed
update docs links from http to https
1 parent 4e244e8 commit f0d183c

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -517,7 +517,7 @@ You should use **callback parameters** for the values that you collect for your
517517

518518
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.
519519

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:
521521

522522
```dart
523523
AdjustEvent adjustEvent = new AdjustEvent('abc123');
@@ -529,7 +529,7 @@ Adjust.trackEvent(adjustEvent);
529529
In that case we would track the event and send a request to:
530530

531531
```
532-
http://www.adjust.com/callback?key=value&foo=bar
532+
https://www.adjust.com/callback?key=value&foo=bar
533533
```
534534

535535
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
11191119
```dart
11201120
adjustConfig.defaultTracker = '{TrackerToken}';
11211121
```
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.
11231123

11241124
- Build and run your app. You should see a line like the following in your LogCat:
11251125

@@ -1233,8 +1233,8 @@ adjustConfig.urlStrategy = AdjustConfig.DataResidencyTR; // for Turkey data resi
12331233
adjustConfig.urlStrategy = AdjustConfig.DataResidencyUS; // for US data residency region
12341234
```
12351235

1236-
[dashboard]: http://adjust.com
1237-
[adjust.com]: http://adjust.com
1236+
[dashboard]: https://adjust.com
1237+
[adjust.com]: https://adjust.com
12381238

12391239
[example-app]: example
12401240

@@ -1249,14 +1249,14 @@ adjustConfig.urlStrategy = AdjustConfig.DataResidencyUS; // for US data residenc
12491249
[currency-conversion]: https://docs.adjust.com/en/event-tracking/#tracking-purchases-in-different-currencies
12501250
[android-deeplinking]: https://github.com/adjust/android_sdk#deep-linking
12511251
[android-launch-modes]: https://developer.android.com/guide/topics/manifest/activity-element.html
1252-
[google-play-services]: http://developer.android.com/google/play-services/setup.html
1252+
[google-play-services]: https://developer.android.com/google/play-services/setup.html
12531253
[reattribution-with-deeplinks]: https://docs.adjust.com/en/deeplinking/#manually-appending-attribution-data-to-a-deep-link
12541254

12551255
## <a id="license"></a>License
12561256

12571257
The Adjust SDK is licensed under the MIT License.
12581258

1259-
Copyright (c) 2018-2021 Adjust GmbH, http://www.adjust.com
1259+
Copyright (c) 2018-2021 Adjust GmbH, https://www.adjust.com
12601260

12611261
Permission is hereby granted, free of charge, to any person obtaining a copy of
12621262
this software and associated documentation files (the "Software"), to deal in

0 commit comments

Comments
 (0)