Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to check if an FB AppRequest has been clicked on or not? [closed]

One can get his app's AppRequests using FB Graph. How can I get if the receiver clicked on any of the AppRequests?

Edit: I can't pass additional parameters in the AppRequest, it's an "AppInvite" and through AppLinks the receiver is taken to the Apple's AppStore etc and no info lives on after the download.

My use case is when two current users invite the same "new user". The "new user" clicks in only one of the invites, of course, but I can't figure out which one it is right now.

like image 887
Jake Armstrong Avatar asked Oct 21 '15 14:10

Jake Armstrong


1 Answers

As per facebook's documentation you can pass an arbitrary data parameter to be used for tracking purposes. You could pass a unique id that you keep a reference to the from->to relationship in your db to know which invite was invoked.

edit: let me know if you need any more clarification.

like image 116
blahartinger Avatar answered Oct 19 '22 23:10

blahartinger