From the Domain 1 i want to make an AJAX request to Domain 2.
I would like to create a wp_nonce
on Domain 1 and send it with AJAX request to Domain 2, then verify it on Domain 2.
The 2 domains are on 2 different servers. Is that possible?
From the Domain 1 i want to make an AJAX request to Domain 2.
I would like to create a wp_nonce
on Domain 1 and send it with AJAX request to Domain 2, then verify it on Domain 2.
The 2 domains are on 2 different servers. Is that possible?
Share Improve this question asked Jun 4, 2019 at 10:25 JozefiniJozefini 1661 silver badge6 bronze badges1 Answer
Reset to default 2No, it is not possible. Nonce is generated on server as a function of domain name, user information, action, time, etc.
This is made especially to distinguish requests from one server to another.