"LinkedIn" (Service Connection)
-
See Also
- ServiceExecute
- ServiceConnect
- SendMessage
-
- Service Connections
- Dropbox
-
-
See Also
- ServiceExecute
- ServiceConnect
- SendMessage
-
- Service Connections
- Dropbox
-
See Also
"LinkedIn" (Service Connection)
Obsolete
Connecting & Authenticating
ServiceConnect["LinkedIn"] creates a connection to the LinkedIn API. If a previously saved connection can be found, it will be used; otherwise, a new authentication request will be launched.
Requests
ServiceExecute["LinkedIn","request",params] sends a request to the LinkedIn API, using parameters params. The following give possible requests.
User Data
"UserData" — data about the specified user's account
Posting
| "Message" | (required) | message to share | |
| "Visibility" | "Anyone" | who can see the message |
Parameter Details
| "URL" | (required) | URL of the content being shared | |
| "Comment" | None | comment associated with the content being shared up to 700 characters | |
| "Title" | None | title up to 200 characters | |
| "ThumbnailURL" | None | URL for the content's thumbnail |
| "Anyone" | shared with anyone with a LinkedIn account | |
| "ConnectionsOnly" | shared with your connections |
Examples
Basic Examples (1)
Create a connection by launching an authentication dialog:
linkedin = ServiceConnect["LinkedIn"]Get profile information about the authenticated user:
linkedin["UserData"]Share a simple message to the authenticated user's account:
linkedin["Share", "Message" -> "Look Ma, I can post from the Wolfram Language!"]Share web content, customizing the title, comment and thumbnail:
linkedin["Share", "Message" -> <|"URL" -> "http://blog.wolfram.com/2017/01/31/analyzing-and-translating-an-alien-language-arrival-logograms-and-the-wolfram-language/", "Comment" -> "Amazing things happen when real science comes from science fiction to the big screen.", "Title" -> "Understanding alien language with the Wolfram Language?" , "ThumbnailURL" -> "https://raw.githubusercontent.com/WolframResearch/Arrival-Movie-Live-Coding/master/ScriptLogoJpegs/OfferWeapon1.jpg"|>]