skip to Main Content

Google OAuth Redirect Uri in Apache Reverse Proxy

I'm trying to setup a web server using Apache as reverse proxy connected to a ASP.NET CORE web application hosted by kestrel. I've followed the tutorial here: https://learn.microsoft.com/en-us/aspnet/core/host-and-deploy/linux-apache?view=aspnetcore-3.1 The website uses the Google Calendar Api to get a users calanedar…

VIEW QUESTION

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
Back To Top
Search