5

インストールリファラートラックを実装したいのですが、リファラーパラメーターをバックエンドデータベースに保存したいのですが、多くの例や質問を見てきまし.コードを試してみる

   package SimpleDemo.ReferralTrack; 

   import java.io.UnsupportedEncodingException;
   import java.net.URLDecoder;
   import java.util.HashMap;
   import java.util.Map;

   import android.content.BroadcastReceiver;
   import android.content.Context;
   import android.content.Intent;
   import android.content.SharedPreferences;
   import android.os.Bundle;

  public class ReferralReceiver extends BroadcastReceiver
   {
@Override
public void onReceive(Context context, Intent intent)
{
    // Workaround for Android security issue: http://code.google.com/p/android/issues/detail?id=16006
    try
    {
        final Bundle extras = intent.getExtras();
        if (extras != null) {
            extras.containsKey(null);
        }
    }
    catch (final Exception e) {
        return;
    }

    Map<String, String> referralParams = new HashMap<String, String>();

    // Return if this is not the right intent.
    if (! intent.getAction().equals("com.android.vending.INSTALL_REFERRER")) { //$NON-NLS-1$
        return;
    }

    String referrer = intent.getStringExtra("referrer"); //$NON-NLS-1$
    if( referrer == null || referrer.length() == 0) {
        return;
    }

    try
    {    // Remove any url encoding
        referrer = URLDecoder.decode(referrer, "x-www-form-urlencoded"); //$NON-NLS-1$
    }
    catch (UnsupportedEncodingException e) { return; }

    // Parse the query string, extracting the relevant data
    String[] params = referrer.split("&"); // $NON-NLS-1$
    for (String param : params)
    {
        String[] pair = param.split("="); // $NON-NLS-1$
        referralParams.put(pair[0], pair[1]);
    }

    ReferralReceiver.storeReferralParams(context, referralParams);
}

private final static String[] EXPECTED_PARAMETERS = {
    "utm_source",
    "utm_medium",
    "utm_term",
    "utm_content",
    "utm_campaign"
};
private final static String PREFS_FILE_NAME = "ReferralParamsFile";

/*
 * Stores the referral parameters in the app's sharedPreferences.
 * Rewrite this function and retrieveReferralParams() if a
 * different storage mechanism is preferred.
 */
public static void storeReferralParams(Context context, Map<String, String> params)
{
    SharedPreferences storage = context.getSharedPreferences(ReferralReceiver.PREFS_FILE_NAME, Context.MODE_PRIVATE);
    SharedPreferences.Editor editor = storage.edit();

    for(String key : ReferralReceiver.EXPECTED_PARAMETERS)
    {
        String value = params.get(key);
        if(value != null)
        {
            editor.putString(key, value);
        }
    }

    editor.commit();
}

/*
 * Returns a map with the Market Referral parameters pulled from the sharedPreferences.
 */
public static Map<String, String> retrieveReferralParams(Context context)
{
    HashMap<String, String> params = new HashMap<String, String>();
    SharedPreferences storage = context.getSharedPreferences(ReferralReceiver.PREFS_FILE_NAME, Context.MODE_PRIVATE);

    for(String key : ReferralReceiver.EXPECTED_PARAMETERS)
    {
        String value = storage.getString(key, null);
        if(value != null)
        {
            params.put(key, value);
        }
    }
    return params;
}
}

その後、私は自分の活動を試しました

 SharedPreferences preferences = PreferenceManager.getDefaultSharedPreferences(DemoActivity.this);
              String  referrers1 =preferences.getString("ga_campaign", "0");
              Map<String, String> retrieveReferralParams=ReferralReceiver.retrieveReferralParams(DemoActivity.this);
              String  referrers2= retrieveReferralParams.get("utm_source");
              String  referrers3= retrieveReferralParams.get("utm_medium");
              String  referrers4= retrieveReferralParams.get("utm_term");
              String  referrers5= retrieveReferralParams.get("utm_content");
              String  referrers6= retrieveReferralParams.get("utm_campaign");
              tv.setText(referrers1+" "+referrers2+" "+referrers3+" "+referrers4+" "+referrers5+" "+referrers6+" ");

ボタンをクリックしても目的の出力が得られない

からのようなものが欲しい

"https://play.google.com/store/apps/details?id=com.lifestreet.android.TestInstallationIntent&referrer=bb%3DAAAAAAAAAA&feature=search_result%22"  
 Ans     

   referrer=bb

よろしくお願いします。

4

3 に答える 3

1

Google が任意の情報を送信できるかどうかはわかりません。ジェネレーターを使用して URL を作成してみてください。

https://developers.google.com/analytics/devguides/collection/android/devguide#google-play-builder

于 2012-06-12T07:22:45.650 に答える
0

同様の問題がありました。ライフサイクルの問題であることがわかりました。install_referrer レシーバーの onReceive は、同じメイン スレッドでアプリの onResume() の後に呼び出されるため、onResume() 中にリファラー ファイルを読み取ろうとすると失敗します。それを証明する logcat を次に示します。これは、Android 4.2.1 と 4.4.2 を使用する 2 つのデバイスで何度も 100% 再現可能でした。

まず、play ストアはリファラーを別の (ストア) プロセスでパッケージにブロードキャストします。

11-04 14:17:51.558: D/Finsky(1737): [1] ReferrerRebroadcaster.doBroadcastInstallReferrer: Delivered referrer for com.xxx.demo

アプリの onResume() - まだ放送受信機が起動していません! S

11-04 14:17:51.888: D/XXX Main Activity(22730): onResume

アプリはリファラー (レシーバーが getSharedPreferences.putString を使用して保存する必要がある) を読み取ろうとします。

11-04 14:17:51.958: I/XXX(22730): Extracted install referrer: 

ここでのみ、レシーバーがメイン スレッドで呼び出され、すぐにリファラーをファイルに書き込もうとします。

11-04 14:17:51.918: I/XXX(22730): Received install referrer: abcdefg

ご覧のとおり、 onResume() は実際にファイルを読み取る機会がないため、抽出しても何も得られません。ただし、アプリを閉じて再度開くと、onResume はファイルを見つけることができるようになり、リファラー文字列が処理されますが、最初の起動時ではありません :)

お役に立てれば!

于 2014-11-04T13:35:58.777 に答える