skip to Main Content

Paypal api – INTERNAL_SERVICE_ERROR while executing payment from paypal in ASP.NET Core

Getting below error while executing payment of paypal: {"name":"INTERNAL_SERVICE_ERROR","message":"An internal service error has occurred","information_link":"https://developer.paypal.com/docs/api/payments/#errors","debug_id":"a997a9f72d8f6"} Here is the code for payment execution: var apiContext = PaypalConfiguration.GetAPIContext(); var paymentExecution = new PaymentExecution() { payer_id = payerId }; var payment = new Payment()…

VIEW QUESTION

Custom URLs for actions in NetCore 3.1 – SEO

Suppose I have these actions - http://thesite.com/Cats/product/1 - http://thesite.com/Cats/1 My customer wants a dynamic way to define custom URL for these actions because of SEO things. So I cant use Redirects! Ex. http://thesite.com/aaaaaa to open http://thesite.com/Cats/product/1 http://thesite.com/bbbbbb to open http://thesite.com/Cats/product/1,…

VIEW QUESTION
Back To Top
Search