Michael Mikhjian
Michael Mikhjian

Reputation: 2794

Catch user referral via Requests

What's the best way to catch the referring user to an application (via apprequests dialogue)

Upvotes: 0

Views: 130

Answers (1)

zapumal
zapumal

Reputation: 159

When a user come to your app via a request the url has the field 'request_ids'. Catch from that:

$_GET['request_ids']

Also remember that you will have to manually delete these app requests once accepted.

Upvotes: 1

Related Questions