Browse Source

Fix decoding of links on Facebook profiles

master
JustAnotherArchivist 4 years ago
parent
commit
236278f0b4
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      social-media-extract-profile-link

+ 1
- 1
social-media-extract-profile-link View File

@@ -21,7 +21,7 @@ function fetch_n_extract {
if grep -qF '"tab_home"' <<<"${page}" if grep -qF '"tab_home"' <<<"${page}"
then then
# Publicly accessible profile # Publicly accessible profile
grep -Po '"website_url":"\K[^"]+' <<<"${page}" | sed 's,\\/,/,g' | awk '!seen[$0]++'
grep -Po '"website_url":\K"[^"]+"' <<<"${page}" | python3 -c 'import json, sys'$'\n''for line in sys.stdin:'$'\n'' print(json.loads(line))' | awk '!seen[$0]++'
elif grep -qF 'id="pagelet_loggedout_sign_up"' <<< "${page}" elif grep -qF 'id="pagelet_loggedout_sign_up"' <<< "${page}"
then then
# Profile overview only # Profile overview only


Loading…
Cancel
Save