better link
This commit is contained in:
parent
3873edf4f6
commit
23b7275907
1 changed files with 6 additions and 6 deletions
|
@ -84,7 +84,7 @@ def get_toots(url, access_token):
|
||||||
response = requests.get(
|
response = requests.get(
|
||||||
url, headers={
|
url, headers={
|
||||||
"Authorization": f"Bearer {access_token}",
|
"Authorization": f"Bearer {access_token}",
|
||||||
'User-Agent': 'mastodon_get_replies (https://paste.thms.uk/mastodon_get_replies.md/markup)'
|
'User-Agent': 'mastodon_get_replies (https://go.thms.uk/mgr)'
|
||||||
}, timeout=5
|
}, timeout=5
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -113,7 +113,7 @@ def get_active_user_ids(server, access_token, reply_interval_hours):
|
||||||
resp = requests.get(
|
resp = requests.get(
|
||||||
url, headers={
|
url, headers={
|
||||||
"Authorization": f"Bearer {access_token}",
|
"Authorization": f"Bearer {access_token}",
|
||||||
'User-Agent': 'mastodon_get_replies (https://paste.thms.uk/mastodon_get_replies.md/markup)'
|
'User-Agent': 'mastodon_get_replies (https://go.thms.uk/mgr)'
|
||||||
}, timeout=5
|
}, timeout=5
|
||||||
)
|
)
|
||||||
if resp.status_code == 200:
|
if resp.status_code == 200:
|
||||||
|
@ -165,7 +165,7 @@ def get_reply_toots(user_id, server, access_token, seen_urls, reply_since):
|
||||||
resp = requests.get(
|
resp = requests.get(
|
||||||
url, headers={
|
url, headers={
|
||||||
"Authorization": f"Bearer {access_token}",
|
"Authorization": f"Bearer {access_token}",
|
||||||
'User-Agent': 'mastodon_get_replies (https://paste.thms.uk/mastodon_get_replies.md/markup)'
|
'User-Agent': 'mastodon_get_replies (https://go.thms.uk/mgr)'
|
||||||
}, timeout=5
|
}, timeout=5
|
||||||
)
|
)
|
||||||
except Exception as ex:
|
except Exception as ex:
|
||||||
|
@ -314,7 +314,7 @@ def get_redirect_url(url):
|
||||||
"""get the URL given URL redirects to"""
|
"""get the URL given URL redirects to"""
|
||||||
try:
|
try:
|
||||||
resp = requests.head(url, allow_redirects=False, timeout=5,headers={
|
resp = requests.head(url, allow_redirects=False, timeout=5,headers={
|
||||||
'User-Agent': 'mastodon_get_replies (https://paste.thms.uk/mastodon_get_replies.md/markup)'
|
'User-Agent': 'mastodon_get_replies (https://go.thms.uk/mgr)'
|
||||||
})
|
})
|
||||||
except Exception as ex:
|
except Exception as ex:
|
||||||
print(f"Error getting redirect URL for URL {url}. Exception: {ex}")
|
print(f"Error getting redirect URL for URL {url}. Exception: {ex}")
|
||||||
|
@ -349,7 +349,7 @@ def get_toot_context(server, toot_id, toot_url):
|
||||||
url = f"https://{server}/api/v1/statuses/{toot_id}/context"
|
url = f"https://{server}/api/v1/statuses/{toot_id}/context"
|
||||||
try:
|
try:
|
||||||
resp = requests.get(url, timeout=5,headers={
|
resp = requests.get(url, timeout=5,headers={
|
||||||
'User-Agent': 'mastodon_get_replies (https://paste.thms.uk/mastodon_get_replies.md/markup)'
|
'User-Agent': 'mastodon_get_replies (https://go.thms.uk/mgr)'
|
||||||
})
|
})
|
||||||
except Exception as ex:
|
except Exception as ex:
|
||||||
print(f"Error getting context for toot {toot_url}. Exception: {ex}")
|
print(f"Error getting context for toot {toot_url}. Exception: {ex}")
|
||||||
|
@ -400,7 +400,7 @@ def add_context_url(url, server, access_token):
|
||||||
search_url,
|
search_url,
|
||||||
headers={
|
headers={
|
||||||
"Authorization": f"Bearer {access_token}",
|
"Authorization": f"Bearer {access_token}",
|
||||||
'User-Agent': 'mastodon_get_replies (https://paste.thms.uk/mastodon_get_replies.md/markup)'
|
'User-Agent': 'mastodon_get_replies (https://go.thms.uk/mgr)'
|
||||||
},
|
},
|
||||||
timeout=5,
|
timeout=5,
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue