This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
xargs -n 1 -I{} \ | |
sh -c " \ | |
curl -s -X GET \ | |
https://api-ssl.bitly.com/v4/bitlinks/bit.ly%2F2{}/clicks/summary \ | |
-H 'Authorization: Bearer ad7ecf6cd10e8f072651f00cf90e2bc983a4a974' \ | |
| jq .total_clicks" \ | |
< shortlinks.txt |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"lists": [ | |
{ | |
"id": "2265d00fe6", | |
"web_id": 57533, | |
"name": "Västerorts RC Sportklubb", | |
"contact": { | |
"company": "Västerorts RC Sportklubb", | |
"address1": "Kyrkhamnsvägen 1", | |
"address2": "", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import * as crypto from 'crypto'; | |
export class ClearbitSignatureValidation { | |
static getSignature(raw_body: string, signature: string): string { | |
const signature_without_prefix = signature.replace(/^(sk\_)/, ''); | |
return ( | |
'sha1=' + | |
crypto | |
.createHmac('sha1', signature_without_prefix) |
OlderNewer