You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* You will first need to grab the crypt value from the query string of the return URL from Opayo's Form Integration page.
65
+
* Passing that value into the `handleTransactionResponse` method will decrypt the response using your Opayo Form Integration encryption password and return it.
66
+
*/
67
+
var urlParams =newURLSearchParams(window.location.search);
68
+
var crypt =urlParams.get('crypt');
69
+
var response =awaittransactionService.handleTransactionResponse(crypt, "your_encryption_password") as ITransactionResponse;
70
+
```
71
+
17
72
## Contributing 🤝🏻
18
73
19
74
Contributions, issues and feature requests are welcome!
0 commit comments