How can I create a QR-code by using and citing an url from a bibliography-entry with \citeurl?
\documentclass{scrartcl}
\usepackage{filecontents}
\usepackage{qrcode}
\begin{filecontents}{\jobname.bib}
@article{test,
author = {A. Author},
title = {My Title},
url = {http://tex.stackexchange.de},
}
\end{filecontents}
\usepackage[
backend=biber,
style=archaeologie,
]{biblatex}
\addbibresource{\jobname.bib}
\begin{document}
\qrcode{\citeurl{test}} %<---- it does’t work
\citeurl{test} %<--- it works
\printbibliography
\end{document}