agnostack/magento_extension

Magento app unable to connect (i.e., authorise)

Closed this issue · 1 comments

On our specific environment, the Magento app inside Zendesk was not able to connect. I fixed it by adding the following lines to Zendesk_Zendesk_ApiController:

if (!$tokenString && isset($_SERVER['REDIRECT_REMOTE_USER'])) {
     $tokenString = $_SERVER['REDIRECT_REMOTE_USER'];
}
jwswj commented

Thanks @leeuwd