Created
February 21, 2017 00:14
-
-
Save thiamsantos/ee51f213cdf4a8f04372dab1984d6817 to your computer and use it in GitHub Desktop.
Social Media Sharing URLS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var links = { | |
'facebook': 'https://facebook.com/sharer/sharer.php?u=' + url, | |
'twitter': 'https://twitter.com/intent/tweet/?text=' + text + '&url=' + url, | |
'google': 'https://plus.google.com/share?url=' + url, | |
'tumblr': "https://www.tumblr.com/widgets/share/tool?posttype=link&title=" + text + "&caption=" + text + "&content=" + url + "&canonicalUrl=" + url + "&shareSource=tumblr_share_button", | |
'pinterest': 'https://pinterest.com/pin/create/button/?url=' + url + '&media=' + url + '&description=' + text, | |
'linkedin': 'https://www.linkedin.com/shareArticle?mini=true&url=' + url + '&title=' + text + '&summary=' + text + '&source=' + url, | |
'reddit': 'https://reddit.com/submit/?url=' + url, | |
'email': 'mailto:?subject=' + text + '&body=' + url, | |
'xing': 'https://www.xing.com/app/user?op=share;url=' + url + ';title=' + text, | |
'whatsapp': 'whatsapp://send?text=' + text + '%20' + url, | |
'hackernews':'https://news.ycombinator.com/submitlink?u=' + url + '&t=' + text, | |
'vk': 'http://vk.com/share.php?title=' + text + '&url=' + url, | |
'telegram': 'https://telegram.me/share/url?text=' + text + '&url=' + url, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment