Open kqvanity opened 3 weeks ago
You can construct them by retrieving the displayImageUrl
and img_400_400
URL.
local_api = Linkedin(
os.getenv("LINKEDIN_EMAIL"),
os.getenv("LINKEDIN_PASSWORD"),
cookies=cookie_jar,
)
profile = local_api.get_profile(profile_id)
display_picture_url = profile.get("displayPictureUrl", "")
img_400_400 = profile.get("img_400_400", "")
parsed_image_url = f"{display_picture_url}{img_400_400}"
Let me know, if you have further questions.
I mean the actual content of the LinkedIn Post itself, where the author might've uploaded many photos.
I see. Let me play around, I'll keep you posted!
I'd like to access the accompanying media e.g., image direct URLs, videos.
it's should ideally be signified as well! Thanks!