summaryrefslogtreecommitdiff
path: root/blp
diff options
context:
space:
mode:
Diffstat (limited to 'blp')
-rwxr-xr-xblp11
1 files changed, 11 insertions, 0 deletions
diff --git a/blp b/blp
new file mode 100755
index 0000000..8ad30c4
--- /dev/null
+++ b/blp
@@ -0,0 +1,11 @@
+#!/bin/sh
+
+sed -n 's/ID: //p' |
+while read id
+do
+ # Retrieve authorization token
+ tok=`curl -s "https://www.blocket.se/annons/a/b/$id" | awk '/id="initialState"/ {getline; print}' | jq -r .authentication.bearerToken`
+
+ # Retrieve phone number
+ curl -s -H "authorization: Bearer $tok" "https://api.blocket.se/search_bff/v1/content/$id/phone_numbers" | jq -r .phone_number
+done