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.