Mouseflowをホワイトリスト化するにはどうすればいいですか?

Mouseflowを使用すると、トラッキングコードで使用されているURLをホワイトリストに表示することができます。

これを行うには、リクエストを受け取り、Mouseflowから適切なトラッキングコードを取得し、その内容をエンドユーザーに返すプロキシスクリプト(下記の例を参照)をセットアップする必要があります。

このスクリプトは、HTTPおよびHTTPS用に構成されたサーバー(これには認証局から発行されたSSL証明書が必要)から提供されることが重要です。さらに、この方法では、スクリプト参照が2つの要求(プロキシスクリプトに1つプロキシスクリプトから、Mouseflowプラットフォームに1つ)を要求するため、結果が返送されるまでの遅延時間が追加される可能性があります。パフォーマンスを向上させるには、キャッシングおよび/またはコンテンツ配信ネットワーク(CDN)を使用することをお勧めします。

[FIND]

//cdn.mouseflow.com/projects/xxx.js

[REPLACE]

//path.to.your.script/?id=xxx

Proxy Script (PHP)

<?php
/*

Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the \"Software\"), to deal in the Software without
restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following
conditions:
 
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
 
THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.

===============================
=========++IMPORTANT++=========
===============================

This script is intended to serve as a proxy for requests to obtain Mouseflow tracking code.

You must host the script on a server that supports HTTP and HTTPS and modify the script location(s) accordingly.

As an example:

[FIND]

//cdn.mouseflow.com/projects/xxx.js

[REPLACE]

//path.to.your.script/?id=xxx

This script will then proxy back the appropriate Mouseflow tracking code for use in the browser.

This method is preferred to self-hosting the Mouseflow tracking code, so that adjustments to settings and updates to Mouseflow will be available.

If you have any questions, please contact Mouseflow Support (https://mouseflow.com).

*/

header(\"Access-Control-Allow-Origin: *\");

if (isset($_GET[\'id\']) && !empty($_GET[\'id\'])) {
	if (strlen($_GET[\'id\']) == 36) {
		try {
			$id = $_GET[\'id\'];
			$result = file_get_contents(\'https://cdn.mouseflow.com/projects/\' . $id . \'.js\');
			header(\'Content-Type: application/javascript\'); 
			echo $result;
		} catch (Exception $e) {
			print json_encode(array(\'STATUS\' => \'REMOVE ERROR\'));
		}
	} else {
		print json_encode(array(\'STATUS\' => \'LENGTH INVALID\'));
	}
} else {
	print json_encode(array(\'STATUS\' => \'REQUEST INVALID\'));
}