直接在超链接下载磁铁或.torrent文件

I am trying to create an html hyperlink to download .torrent or magnet file directly from extratorrent.cc like yts.ag is doing but my link is not working?

<a rel="nofollow" title="Download verified torrent file" href="magnet:?xt=urn:btih:d84ac81cb6bb3ae055aca1a75b4ddeb30f00e38b&dn=Suicide.Squad.2016.EXTENDED.720p.WEBRip.x264.AAC-ETRG&tr=udp%3A%2F%2Ftracker.openbittorrent.com%3A80%2Fannounce&tr=udp%3A%2F%2Fglotorrents.pw%3A6969%2Fannounce&tr=udp%3A%2F%2Ftracker.openbittorrent.com%3A80%2Fannounce&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Fzer0day.to%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.coppersurfer.tk%3A6969%2Fannounce">Download torrent</a>

</div>

What about using some tool like https://webtorrent.io/intro

var WebTorrent = require('webtorrent')

var client = new WebTorrent()

var magnetURI = 'magnet: ...'

client.add(magnetURI, { path: '/path/to/folder' }, function (torrent) {   torrent.on('done', function () {
    console.log('torrent download finished')   }) })