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
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -265,7 +265,7 @@ The following properties are supported:
265
265
| matomo.tracker.log-failed-tracking | Will send errors to the log if the Matomo Tracking API responds with an erroneous HTTP code |
266
266
| matomo.tracker.connect-timeout | allows you to change the default connection timeout of 10 seconds. 0 is interpreted as infinite, null uses the system default |
267
267
| matomo.tracker.socket-timeout | allows you to change the default socket timeout of 10 seconds. 0 is interpreted as infinite, null uses the system default |
268
-
| matomo.tracker.user-agent | used by the request made to the endpoint is`MatomoJavaClient`per default. You can change it by using this builder method.|
268
+
| matomo.tracker.user-agent |The user agent used by the request made to the endpoint. Default:`MatomoJavaClient`|
269
269
| matomo.tracker.proxy-host | The hostname or IP address of an optional HTTP proxy. `proxyPort` must be configured as well |
270
270
| matomo.tracker.proxy-port | The port of an HTTP proxy. `proxyHost` must be configured as well. |
271
271
| matomo.tracker.proxy-username | If the HTTP proxy requires a username for basic authentication, it can be configured with this method. Proxy host, port and password must also be set. |
@@ -412,7 +412,7 @@ public class ConsumerExample {
412
412
413
413
```
414
414
415
-
If you have multiple requests to wish to track, it may be more efficient to send them in a single HTTP call. To do this,
415
+
If you have multiple requests you wish to track, it may be more efficient to send them in a single HTTP call. To do this,
416
416
send a bulk request. Place your requests in an _Iterable_ data structure and call
417
417
418
418
```java
@@ -474,7 +474,7 @@ Per default every request has the following default parameters:
474
474
| apiVersion | 1 |
475
475
| responseAsImage | false |
476
476
477
-
Overwrite these properties as desired. We strongly recommend your to determine the visitor id for every user using
477
+
Overwrite these properties as desired. We strongly recommend you to determine the visitor id for every user using
478
478
a unique identifier, e.g. an email address. If you do not provide a visitor id, a random visitor id will be generated.
479
479
480
480
Ecommerce requests contain ecommerce items, that can be fluently build:
@@ -667,9 +667,9 @@ following breaking changes:
667
667
* `setEcommerceLastOrderTimestamp` requires an `Instant` parameter
668
668
* `headerAcceptLanguage` is of type `AcceptLanguage`. You can build it easily
669
669
using `AcceptLanguage.fromHeader("de")`
670
-
* `visitorCountry` is of type `Country`. You can build it easily using `AcceptLanguage.fromCode("fr")`
670
+
* `visitorCountry` is of type `Country`. You can build it easily using `Country.fromCode("fr")`
671
671
* `deviceResolution` is of type `DeviceResolution`. You can build it easily
672
-
using `DeviceResolution.builder.width(...).height(...).build()`. To easy the migration, we added a constructor
672
+
using `DeviceResolution.builder.width(...).height(...).build()`. To ease the migration, we added a constructor
673
673
method `DeviceResolution.fromString()` that accepts inputs of kind _width_x_height_, e.g. `100x200`
674
674
* `pageViewId` is of type `UniqueId`. You can build it easily using `UniqueId.random()`
675
675
* `randomValue` is of type `RandomValue`. You can build it easily using `RandomValue.random()`. However, if you
@@ -713,7 +713,7 @@ mvn install
713
713
```
714
714
715
715
The built jars and javadoc can be found in `target`. By using
716
-
the Maven goal `install, a snapshot
716
+
the Maven goal `install`, a snapshot
717
717
version can be used in your local Maven repository for testing purposes, e.g.
0 commit comments