Merge pull request #1731 from n8n-io/1.16.0-release-note

add release note and quick overhaul of linkeding node doc
This commit is contained in:
Deborah 2023-11-08 13:40:39 +00:00 committed by GitHub
commit f1bdca24c0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 24 additions and 34 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 68 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 69 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 84 KiB

View File

@ -13,52 +13,33 @@ On this page, you'll find a list of operations the LinkedIn node supports and li
/// note | Credentials
Refer to [LinkedIn credentials](/integrations/builtin/credentials/linkedIn/) for guidance on setting up authentication.
///
/// note | Examples and templates
For usage examples and templates to help you get started, take a look at n8n's [LinkedIn integrations](https://n8n.io/integrations/linkedin/){:target="_blank" .external-link} list.
///
## Basic Operations
## Operations
* Post
* Create a new post
* Create
/// note | Keep in mind
If posting as an Organization enter only the organization number in the URN field. For example, `03262013` not `urn:li:company:03262013`.
///
## Parameters
## Example Usage
* **Post As**: choose whether to post as a **Person** or **Organization**.
* **Person Name or ID** and **Organization URN**: enter an identifier for the person or organization.
This workflow allows you to get an image from a URL and post it on LinkedIn. You can also find the [workflow](https://n8n.io/workflows/681) on n8n.io. This example usage workflow would use the following nodes.
- [Start](/integrations/builtin/core-nodes/n8n-nodes-base.start/)
- [HTTP Request](/integrations/builtin/core-nodes/n8n-nodes-base.httprequest/)
- [LinkedIn]()
/// note | Posting as organization
If posting as an Organization enter the organization number in the URN field. For example, `03262013` not `urn:li:company:03262013`.
///
* **Text**: the post contents.
* **Media Category**: use this when including images or article URLs in your post.
The final workflow should look like the following image.
## Related resources
![A workflow with the LinkedIn node](/_images/integrations/builtin/app-nodes/linkedin/workflow.png)
View [example workflows and related content](https://n8n.io/integrations/linkedin/){:target=_blank .external-link} on n8n's website.
### 1. Start node
The start node exists by default when you create a new workflow.
### 2. HTTP Request node
1. Enter the URL of the image you want to download in the ***URL*** field.
2. Select ***File*** from the ***Response Format*** dropdown list.
3. Click on ***Execute Node*** to run the node.
![Downloading an image with the HTTP Request node](/_images/integrations/builtin/app-nodes/linkedin/httprequest_node.png)
### 3. LinkedIn node
1. First of all, you'll have to enter credentials for the LinkedIn node. You can find out how to do that [here](/integrations/builtin/credentials/linkedin/).
2. Select 'Person' from the ***Post As*** dropdown list.
3. Select the person you want to post as from the ***Person*** dropdown list.
4. Enter a message in the ***Text*** field.
5. Select 'Image' from the ***Media Category*** dropdown list.
6. Click on ***Execute Node*** to run the node.
![Posting with the LinkedIn node](/_images/integrations/builtin/app-nodes/linkedin/linkedin_node.png)
Refer to [LinkedIn's API documentation](https://learn.microsoft.com/en-us/linkedin/){:target=_blank .external-link} for more information about the service.

View File

@ -28,6 +28,15 @@ n8n uses [semantic versioning](https://semver.org/){:target=_blank .external-lin
* MINOR version when adding functionality in a backward-compatible manner.
* PATCH version when making backward-compatible bug fixes.
## n8n@1.16.0
View the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.15.2...n8n@1.16.0){:target=_blank .external-link} for this version.<br />
**Release date:** 2023-11-08
This release contains node enhancements and bug fixes.
For full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases){:target=_blank .external-link} on GitHub.
## n8n@1.15.2
View the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.15.1...n8n@1.15.2){:target=_blank .external-link} for this version.<br />