Skip to main content
New Participant
July 17, 2020

External Redirect to AEM is returning 403

  • July 17, 2020
  • 8 replies
  • 4002 views

I am getting redirected from an payment gateway page to AEM page. However i am getting 403 error when i redirect.

Tried to redirect to we-retail page as well but the same issue persists.

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.

8 replies

Asutosh_Jena_
New Participant
July 18, 2020

@sachindey11 Are you trying to post something while redirecting or it's just a 301/302 redirect to a static page in AEM?

ArpitVarshney
New Participant
July 17, 2020

Hi @sachindey11 

If you are working on your local machine and have created a sling servlet to make post request to local AEM Server , you may be getting 403 Error Code : Forbidden
This issue is due to CSRF Filter blocking POST Requests.

You can unblock this via OSGi Configuration. You shouldn't be doing it on production instances.

  1. Go to http://localhost:4502/system/console/configMgr
  2. Find Adobe Granite CSRF Filter 
  3. Remove POST from Filter Methods
  4. Save and Test the servlet again.



New Participant
July 17, 2020
Thanks Arpit. I have already done that but still i get the below error...Status 500 Message java.lang.IllegalArgumentException: Value for key response-signature-base64 can't be put into node:
arunpatidar
New Participant
July 17, 2020

Hi,

Is this a post request or a get request?

Arun Patidar
New Participant
July 17, 2020
Its a post request. Payment Gateways frame is injected into AEM page and then we redirect to bank page and back to AEM page.