server {
...
server_name example.com;
...
location /.well-known/skadnetwork/report-attribution/ {
proxy_set_header Host example.com;
proxy_pass [MyTracker SKAN Postbacks domain];
}
...
}
Starting with iOS 15, the app developer can receive SKAN postbacks directly from Apple, without ad networks.
MyTracker allows developers to receive SKAN signals from Apple and get all iOS stats in one place. The app developer can choose to receive data from MyTracker domain or their own domain .
Postbacks from Apple cannot replace postbacks from ad networks because they do not contain details on advertising campaigns. For more information on how to support the reception of all SKAN data, see the SKAN attribution section.
To support the SKAN postbacks from Apple:
Info.plist
in the Project navigator Xсode.https://example.com
and configure a proxy server to forward the data to MyTracker
(copy MyTracker SKAN Postbacks domain
from the
SKAdNetwork Settings tab).
Example of NGINX configuration:
server {
...
server_name example.com;
...
location /.well-known/skadnetwork/report-attribution/ {
proxy_set_header Host example.com;
proxy_pass [MyTracker SKAN Postbacks domain];
}
...
}
See also sections SKAN reports and Exporting SKAN postbacks via API