- 🇮🇪Ireland vbalsys
If you are creating the link programmaticaly, include the CSFR token generated for that path as a token parameter.
This snipped below worked for me:$csfr_token = \Drupal::getContainer()->get('csrf_token')->get("unmasquerade"); $url = Url::fromRoute('masquerade.unmasquerade', [], ['query' => ['token' => $csfr_token]]); $output = Link::fromTextAndUrl(t('Unmasquerade'), $url)->toString();
Hope that helps.