Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

From my Android app, I'd like to publish its install back to facebook to allow for conversion tracking for their new mobile app install ads, but I'd like to do it without using their api.

So instead of doing

com.facebook.Settings.publishInstall(context, appId);

I'd like to just send a HTTP request with the required parameters to some URL.

EDIT:

I logged the two requests that get sent to facebook to publish the app install and they look like this:

Request:

GET /[app id]?format=json&sdk=android&fields=supports_attribution HTTP/1.1

User-Agent: FBAndroidSDK.3.0.0.b

Content-Type: multipart/form-data; boundary=3i2ndDfv2rTHiSisAbouNdArYfORhtTPEefj3q2f

Host: graph.facebook.com

Connection: Keep-Alive

Accept-Encoding: gzip

Response:

HTTP/1.1 200 OK

Access-Control-Allow-Origin: *

Cache-Control: private, no-cache, no-store, must-revalidate

Content-Type: text/javascript; charset=UTF-8

ETag: "24ea6554744eece05b90dd2e65af63277cdcaf53"

Expires: Sat, 01 Jan 2000 00:00:00 GMT

Pragma: no-cache

X-FB-Rev: 658994

X-FB-Debug: P2GE3fDVAnRJh62rBS5WXD4ce1hTy8Pwvjq5rT/I+TI=

Date: Tue, 30 Oct 2012 11:37:09 GMT

Connection: keep-alive

Content-Length: 52



{"supports_attribution":true,"id":"[app id]"}

Request:

POST /[app id]/activities?format=json&sdk=android&migration_bundle=fbsdk%3A20120913 HTTP/1.1

User-Agent: FBAndroidSDK.3.0.0.b

Content-Type: multipart/form-data; boundary=3i2ndDfv2rTHiSisAbouNdArYfORhtTPEefj3q2f

Host: graph.facebook.com

Connection: Keep-Alive

Transfer-Encoding: chunked

Accept-Encoding: gzip



261

--3i2ndDfv2rTHiSisAbouNdArYfORhtTPEefj3q2f

Content-Disposition: form-data; name="format"



json

--3i2ndDfv2rTHiSisAbouNdArYfORhtTPEefj3q2f

Content-Disposition: form-data; name="sdk"



android

--3i2ndDfv2rTHiSisAbouNdArYfORhtTPEefj3q2f

Content-Disposition: form-data; name="migration_bundle"



fbsdk:20120913

--3i2ndDfv2rTHiSisAbouNdArYfORhtTPEefj3q2f

Content-Disposition: form-data; name="attribution"



ab175007-2725-464f-a111-b8b1a92bf1dd

--3i2ndDfv2rTHiSisAbouNdArYfORhtTPEefj3q2f

Content-Disposition: form-data; name="event"



MOBILE_APP_INSTALL

--3i2ndDfv2rTHiSisAbouNdArYfORhtTPEefj3q2f



0

Response:

HTTP/1.1 200 OK

Access-Control-Allow-Origin: *

Cache-Control: private, no-cache, no-store, must-revalidate

Content-Type: text/javascript; charset=UTF-8

Expires: Sat, 01 Jan 2000 00:00:00 GMT

Pragma: no-cache

X-FB-Rev: 658994

X-FB-Debug: +0GWQ4cu+tFeAg3QEuwYGx+HAt7t37itzxEYBaTZF8U=

Date: Tue, 30 Oct 2012 11:38:33 GMT

Connection: keep-alive

Content-Length: 4



true

I've included a trimmed down version of the facebook api in my app that cannot do anything else, but just send those two requests. I'll try it out and report back on how it works.

Optimally, I'd like to send the requests from a server and not from the phone at all.

share|improve this question
So, did it work ? – Ari R. Fikri Apr 17 at 9:06
Could you be kind to share the code that generate the request ? because I don't understand what boundary is and where to get the value from.Thanks. – Ari R. Fikri Apr 18 at 3:48
I've also got a similar setup going. I noticed you were able to include the attribution id. Did you extract that from the pasteboard like the sdk does? – Miles Alden May 9 at 20:16

2 Answers

It's not possible to do it without integrating our SDK. For App Install ads, the SDK must be integrated with your app. If you go to your app dashboard > Promote > Android Feed, there is a message that states:

Note: This is only effective if you integrated the Facebook SDK for Android. You'll be charged every time someone sees your ad.

share|improve this answer

I ended up publishing the install back to facebook from my app, using this stripped down version of their api:

package de.techunity.fancy.facebook.publishinstall;

import org.json.JSONException;

import android.content.ContentResolver;
import android.content.Context;
import android.content.SharedPreferences;
import android.database.Cursor;
import android.net.Uri;
import android.os.Bundle;
import android.util.Log;

import com.facebook.android.Util;

public class InstallPublisher {
    private static final Uri ATTRIBUTION_ID_CONTENT_URI =
            Uri.parse("content://com.facebook.katana.provider.AttributionIdProvider");
    private static final String ATTRIBUTION_ID_COLUMN_NAME = "aid";

    private static final String ATTRIBUTION_PREFERENCES = "com.facebook.sdk.attributionTracking";
    private static final String PUBLISH_ACTIVITY_PATH = "%s/activities";
    private static final String MOBILE_INSTALL_EVENT = "MOBILE_APP_INSTALL";
    private static final String SUPPORTS_ATTRIBUTION = "supports_attribution";
    private static final String APPLICATION_FIELDS = "fields";
    private static final String ANALYTICS_EVENT = "event";
    private static final String ATTRIBUTION_KEY = "attribution";

    /**
     * Manually publish install attribution to the facebook graph.  Internally handles tracking repeat calls to prevent
     * multiple installs being published to the graph.
     * @param context
     * @return returns false on error.  Applications should retry until true is returned.  Safe to call again after
     * true is returned.
     */
    public static boolean publishInstall(final Context context, final String applicationId) {
        try {
            if (applicationId == null) {
                return false;
            }
            final String attributionId = InstallPublisher.getAttributionId(context.getContentResolver());
            final SharedPreferences preferences = context.getSharedPreferences(ATTRIBUTION_PREFERENCES, Context.MODE_PRIVATE);
            final String pingKey = applicationId+"ping";
            long lastPing = preferences.getLong(pingKey, 0);
            if (lastPing == 0 && attributionId != null) {
                new Thread(new Runnable() {

                    @Override
                    public void run() {
                        try {
                            Bundle supportsAttributionParams = new Bundle();
                            supportsAttributionParams.putString(APPLICATION_FIELDS, SUPPORTS_ATTRIBUTION);
                            Request pingRequest = Request.newGraphPathRequest(applicationId, null);
                            pingRequest.setParameters(supportsAttributionParams);

                            GraphObject supportResponse = pingRequest.executeAndWait().getGraphObject();
                            Object doesSupportAttribution = supportResponse.getProperty(SUPPORTS_ATTRIBUTION);

                            if (!(doesSupportAttribution instanceof Boolean)) {
                                throw new JSONException(String.format(
                                        "%s contains %s instead of a Boolean", SUPPORTS_ATTRIBUTION, doesSupportAttribution));
                            }

                            if ((Boolean)doesSupportAttribution) {
                                GraphObject publishParams = (GraphObject) GraphObjectWrapper.createGraphObject();
                                publishParams.setProperty(ANALYTICS_EVENT, MOBILE_INSTALL_EVENT);
                                publishParams.setProperty(ATTRIBUTION_KEY, attributionId);

                                String publishUrl = String.format(PUBLISH_ACTIVITY_PATH, applicationId);

                                Request publishRequest = Request.newPostRequest(publishUrl, publishParams, null);
                                publishRequest.executeAndWait();

                                // denote success since no error threw from the post.
                                SharedPreferences.Editor editor = preferences.edit();
                                editor.putLong(pingKey, System.currentTimeMillis());
                                editor.commit();
                            }
                        }
                        catch (Exception e) {
                            Log.d("fancy", "Couldn't publish publish install to facebook", e);
                        }
                        finally {
                            Log.d("fancy", "Publish install to facebook thread completed");
                        }
                    }
                }, "facebook publish install thread").start();
            }
            return true;
        } catch (Exception e) {
            // if there was an error, fall through to the failure case.
            Util.logd("Facebook-publish", e.getMessage());
        }
        return false;
    }

    public static String getAttributionId(ContentResolver contentResolver) {
        String [] projection = {ATTRIBUTION_ID_COLUMN_NAME};
        Cursor c = contentResolver.query(ATTRIBUTION_ID_CONTENT_URI, projection, null, null, null);
        if (c == null || !c.moveToFirst()) {
            return null;
        }
        String attributionId = c.getString(c.getColumnIndex(ATTRIBUTION_ID_COLUMN_NAME));
        c.close();
        return attributionId;
    }

}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.