From 6d4562bc434ce951577cf949a6fda64894ec0da1 Mon Sep 17 00:00:00 2001 From: Magnus Hagander Date: Mon, 19 May 2025 18:40:12 +0200 Subject: [PATCH] Update LinkedIN API version Linkedin killed off 202405 as an API version. Try a blind update to 202505 and hope they didn't change any of the (very few) API calls we use :) --- postgresqleu/util/messaging/linkedin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/postgresqleu/util/messaging/linkedin.py b/postgresqleu/util/messaging/linkedin.py index 572d872f..9216668e 100644 --- a/postgresqleu/util/messaging/linkedin.py +++ b/postgresqleu/util/messaging/linkedin.py @@ -141,7 +141,7 @@ class Linkedin(object): self._sess = requests.Session() self._sess.headers.update({ 'Authorization': 'Bearer {}'.format(self.providerconfig['token']), - 'LinkedIn-Version': '202405', + 'LinkedIn-Version': '202505', }) return self._sess -- 2.30.2