You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: "Gets the authenticated user's profile picture data including display image and metadata. [See the documentation](https://learn.microsoft.com/en-us/linkedin/shared/references/v2/profile/profile-picture)",
8
+
version: "0.0.1",
9
+
type: "action",
10
+
props: {
11
+
linkedin,
12
+
includeOriginalImage: {
13
+
type: "boolean",
14
+
label: "Include Original Image",
15
+
description: "Whether to include the original image data in the response (requires special permissions)",
16
+
optional: true,
17
+
default: false,
18
+
},
19
+
},
20
+
methods: {
21
+
getProfilePictureFields(args){
22
+
returnthis.linkedin._makeRequest({
23
+
url: `${constants.BASE_URL}v2/me`,
24
+
...args,
25
+
});
26
+
},
27
+
},
28
+
asyncrun({ $ }){
29
+
// Build the projection parameter based on user preferences
0 commit comments