0

カスタム Firefox 検索エンジンを作成しました。以下のコードを使用しました。このサイトでの使用を追跡することは可能ですか。私の懸念は、Firefox 検索エンジンからの検索が、Google アナリティクスでの直接アクセスのように見えることです。検索または他の解決策にタグを付けたいと思います。私はちょっとこれを一緒にハックしました。つまり、これの初心者です。

<OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/">
<ShortName>ICD9 Code Search</ShortName>
<Description>Search ICD9 Code Search</Description>
<Tags>schadenfreude</Tags>
<Image height="16" width="16" type="image/x-icon">https://drchrono.com/favicon.ico</Image>
<Url type="text/html" method="GET" template="https://drchrono.com/billing/medical_codes/?code_type=icd9_procedures&amp;search_text={searchTerms}&amp;Submit=Search&amp;search_hcpcs_level2_codes=on&amp;search_hcpcs_level2_modifiers=on"/>
<InputEncoding>UTF-8</InputEncoding>
<AdultContent>false</AdultContent>
</OpenSearchDescription>
4

2 に答える 2

1

挙動には影響しないがログ解析時に使えるダミーのクエリパラメータを追加できないか。例えば:

<Url type="text/html" method="GET" template="https://drchrono.com/billing/medical_codes/?code_type=icd9_procedures&amp;search_text={searchTerms}&amp;Submit=Search&amp;search_hcpcs_level2_codes=on&amp;search_hcpcs_level2_modifiers=on&amp;source=firefox_se"/>
于 2010-02-02T05:42:09.273 に答える
0

必要なものは、キャンペーンのタグ付けと呼ばれます。URL に特別な引数を追加できます。この引数は、サイトで実行されている Google アナリティクス スクリプトによって認識され、GA のトラフィック ソース/キャンペーンレポートで収集されます。キャンペーン タグの作成に役立つGoogleのオンラインURL ビルダー ツールがあります。

于 2010-02-05T13:29:07.480 に答える