Js check: Difference between revisions

From Wiki Kaminari Click
No edit summary
(Marked this version for translation)
 
(18 intermediate revisions by the same user not shown)
Line 1: Line 1:
Интеграция предназначена для проверки трафика на лендингах, web-страницах. Когда пользователь заходит на страницу наш скрипт собирает данные и отправляет на сервер. На сервере данные анализируются и пишутся в базу данных. Вы можете смотреть накопленные данные в статистике. Если вы хотите сразу перенаправлять ботовый трафик после проверки, есть возможность сделать это через настройки.
<languages/>


=== Шаг 1 ===
<translate>
Для того, чтобы создать интеграцию с типом ''JS сheck'' выберите пункт '''Get JS check''' на странице [https://kaminari.click/integration Интеграции].
<!--T:1-->
Integration is designed to test traffic on landing pages and web pages. When a user visits a page, our script collects data and sends it to our server. On the server, the data is analyzed and written to a database. You can view the accumulated data in the statistics.


[[File:Js check 0.png]]
<!--T:6-->
If you want to do something with bot traffic immediately after checking, there is an option to do this through the settings.


=== Шаг 2 ===
<!--T:2-->
Вы попадёте на страницу создания интеграции. Там надо будет заполнить поля с названием интеграции и выбрать её статус.
= General settings =
General information on setting up integration can be found here: [[General settings]].


[[File:Js check 2.png]]
<!--T:3-->
= Embed code =
After filling out the form, a generated script code will appear at the bottom of the page, which you can copy with the ''Copy'' button and paste into the <code><body></code> tag on your page.


=== Sub-метки ===
<!--T:4-->
При желании вы можете разметить кампанию метками. Доступно до 7 суб-меток, они будут писаться в отдельные поля базы данных. Кнопка encode делает метку безопасной для URL. Вы можете заполнить их прямо тут, или потом, когда будете вставлять скрипт на страницу.
'''Under no circumstances should you change the kmnrKey field, as it contains the unique ID of your integration. If it is different from the saved one, clicks will not be recorded in the database.'''


=== Traffic-back URL ===
<!--T:5-->
Если вы хотите, чтобы фродовый трафик автоматически перенаправлялся на какую-то страницу, укажите её URL в поле Traffic-back URL
[[File:Js check 13.png]]
 
</translate>
=== Скрипт для вставки ===
Внизу размещён сгенерированный скрипт, который вы можете скопировать кнопкой Copy и разместить у себя на странице в теге body.
 
Ни в коем случае не меняйтся поле kmnrKey, в нём указан уникальный ID вашей интеграции. Если он будет отличаться от сохранённого, клики не будут писаться в базу.
 
=== kmnr.onResponse ===
Если вы хотите сами обрабатывать фродовые показы, можете добавить в window.kmnr поле kmnr.onResponse. Это функция, которая принимает на вход объект { fraud }, где fraud может иметь значение 0 или 1.
onResponse: function(response) { if (response.fraud == 1) { window.location = 'some.url' } }
kmnr.onResponse обладает большим приоритетом, чем Traffic-back URL
 
=== Остановка кампании ===
Если вы захотите остановить кампанию, измените статус интеграции на blocked.
 
=== Удаление кампании ===
Если вы захотите удалить кампанию, измените статус интеграции на deleted, или нажать кнопку delete в списке. После этого она перестанет быть доступна.

Latest revision as of 07:50, 19 September 2023

Other languages:

Integration is designed to test traffic on landing pages and web pages. When a user visits a page, our script collects data and sends it to our server. On the server, the data is analyzed and written to a database. You can view the accumulated data in the statistics.

If you want to do something with bot traffic immediately after checking, there is an option to do this through the settings.

General settings

General information on setting up integration can be found here: General settings.

Embed code

After filling out the form, a generated script code will appear at the bottom of the page, which you can copy with the Copy button and paste into the <body> tag on your page.

Under no circumstances should you change the kmnrKey field, as it contains the unique ID of your integration. If it is different from the saved one, clicks will not be recorded in the database.

Js check 13.png