You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Couldnt find the function so i just made this one:
def get_own_connections(self, count: str) -> Dict:
"""Fetch skills associated with a given job.
:param job_id: LinkedIn job ID
:type job_id: str
:return: Job skills
:rtype: dict
"""
params = {
"decorationId": "com.linkedin.voyager.dash.deco.web.mynetwork.ConnectionListWithProfile-16",
"count": count,
"q": "search",
"sortType": "RECENTLY_ADDED"
}
res = self._fetch(
f"/relationships/dash/connections",
params=params,
)
data = res.json()
if data and "status" in data and data["status"] != 200:
self.logger.info("request failed: {}".format(data.get("message")))
return {}
return data
Is there a function to get your own connections? Im trying via get_profile_connections but it returns an empty list when using my own public id.
The text was updated successfully, but these errors were encountered: