summarylogtreecommitdiffstats
path: root/download.sh
blob: dcbb944dc45ffbbb72d5e3e9524b53310f3511b8 (plain)
1
2
3
4
5
6
7
8
#!/bin/bash
cookie=$(mktemp)
url=$1

shift
curl -sS -c ${cookie} https://im.qq.com 1>/dev/null
curl $@ $(curl -sS --json "{\"url\":\"${url}\"}" -b ${cookie} https://im.qq.com/http2rpc/gotrpc/noauth/trpc.qqntv2.urlsign.UrlSign/GetSign -H 'x-oidb: {"uint32_command":"0x9b8e","uint32_service_type":1}' | jq .data.url -r)
rm -f ${cookie}