I have set the success URL in the one time and subscription payments in Paypal account. Now I would like to know how to set the cancel URL? Here is the code I used:
onApprove: function(data, actions) {
return actions.order.capture().then(function(orderData) {
// Or go to another URL:
window.location.href = 'https://crewbidapp.com';
});
},