Magento app unable to connect (i.e., authorise)
leeuwd opened this issue · 1 comments
leeuwd commented
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'];
}