Skip to content

Commit 5a90fca

Browse files
committed
Merge remote-tracking branch 'origin/main'
2 parents cd326e3 + 3acea28 commit 5a90fca

File tree

6 files changed

+80
-53
lines changed

6 files changed

+80
-53
lines changed

package-lock.json

Lines changed: 48 additions & 51 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"dependencies": {
1515
"add": "^2.0.6",
1616
"autoprefixer": "^10.4.20",
17-
"next": "^14.2.11",
17+
"next": "^14.2.22",
1818
"next-sitemap": "^4.2.3",
1919
"nextra": "^3.2.4",
2020
"nextra-theme-docs": "^3.2.4",

pages/providers/linkedin-page.mdx

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
---
2+
title: LinkedIn Page
3+
description: How to add a LinkedIn Page to your system
4+
---
5+
6+
import OAuth2Redirect from "../../components/snippets/oauth2redirect.tsx";
7+
8+
Head over to [LinkedIn developers](https://www.linkedin.com/developers/apps) and create a new app.
9+
![Linkedin](/images/providers/linkedin/linkedin-001.png)
10+
11+
Verify your app with LinkedIn
12+
![Linkedin](/images/providers/linkedin/linkedin-004.png)
13+
14+
You will need to follow the verification process to request the necessary permissions listed below.
15+
16+
Fill in all the details, once created head over to Products and make sure you add all the required products.
17+
![Linkedin](/images/providers/linkedin/linkedin-003.png)
18+
19+
It is important to request the Advertising API permissions and fill up the request form, or you will not have the ability to refresh your tokens.
20+
21+
<OAuth2Redirect provider = "linkedin-page" />
22+
23+
24+
Copy the created `Client ID` and `Client Secret` and add them to your `.env` file.
25+
26+
```env
27+
LINKEDIN_CLIENT_ID=""
28+
LINKEDIN_CLIENT_SECRET=""
29+
```
30+
You can find those under the Auth Tab of your LinkedIn App in the developer portal.

pages/public-api.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ Payload:
135135
"value": [
136136
{
137137
"content": "This is my cool post",
138-
"id": "Only if you want to edit and existing post",
138+
"id": "Only if you want to edit an existing post",
139139
"image": [
140140
{
141141
"id": "string"
18.4 KB
Loading
15.2 KB
Loading

0 commit comments

Comments
 (0)