Linkedin post API
Returns post information from URL
Parameters
url - Post URL
type: string
stream - Stream response
type: booleanDefault: false
Return type
post
Examples
1
2
3
4
5
6
7
8
9
10
11
12
13
import typedclient import asyncio
api = typedclient.connect('API_KEY')
async def main(): post = await api.linkedin.post( url="https://www.linkedin.com/pulse/getting-value-out-sunburst-guillaume-de-b%C3%A9naz%C3%A9?trk=public_profile_article_view" ) print(post.title)
asyncio.run(main())