action link_get_urls_social_media { label: "Get social media accounts" description: "Visits the URL and checks if there are any social media accounts and returns the found ones.\n\nWill by default return the account identifiers and not the full URL to the profiles. To return URLs instead set the parameter \"return_urls\" to true.\n\nThe URLs can also be created manually like this:\n\n| Property | URL |\n| --------------- | -------------------------------------- |\n| facebookPage | https://facebook.com/{ID} |\n| githubUser | https://github.com/{ID} |\n| googlePlus | https://plus.google.com/+{ID} |\n| instagram | https://instagram.com/{ID} |\n| linkedInCompany | https://linkedin.com/company/{ID} |\n| pinterest | https://pinterest.com/{ID} |\n| twitter | https://twitter.com/{ID} |\n| youTubeUser | https://youtube.com/user/{ID} |\n\nProperties only get set when a value for it has been found. That means that if no social media account has been found only the property \"url\" will be set.\n" provider: link method: GET path: "/Urls/social-media" encoding: json input: { type: "object" properties: { browser_render: { type: "string" } return_urls: { type: "string" } url: { type: "string" } } required: ["url"] additionalProperties: false } output: { type: "object" additionalProperties: true } }