I'm trying to finish my checkout with PayPal for my Laravel App for 2 days but capturing the order just doesn't work. I followed the instructions https://developer.paypal.com/docs/checkout/standard/integrate/ and everything works fine - I generate an access token and then creating the order but on orders/{id}/capture I'm getting { "debug_id": "xxx", "details": [ { "description": "You do not have permission to access or perform operations on this resource.", "issue": "PERMISSION_DENIED" } ], "links": [ { "href": "https://developer.paypal.com/docs/api/orders/v2/#error-PERMISSION_DENIED", "rel": "information_link" } ], "message": "Authorization failed due to insufficient permissions.", "name": "NOT_AUTHORIZED" } I already found out, that it could be something with the transaction search option checked AND waiting 9 hours to get the new scope if I requested a token with transaction search unchecked. So I checked it, waited about 14 hours and I'm still don't getting it into the scope of the access token "scope":"https://uri.paypal.com/services/billing-agreements https://api.paypal.com/v1/payments/.* https://uri.paypal.com/services/vault/payment-tokens/read openid Braintree:Vault https://api.paypal.com/v1/vault/credit-card/.* https://uri.paypal.com/services/subscriptions". What could possible cause this problem?
... View more