Skip to content

Instantly share code, notes, and snippets.

@adamcbrewer
Last active November 9, 2017 07:14

Revisions

  1. adamcbrewer revised this gist Oct 8, 2017. 1 changed file with 1 addition and 3 deletions.
    4 changes: 1 addition & 3 deletions share-intents.md
    Original file line number Diff line number Diff line change
    @@ -46,6 +46,4 @@
    <meta property="og:image" content="{image_url}">
    <meta property="og:description" content="{description}">
    <meta property="og:site_name" content="{site_name}">
    ```

    [Source](http://guerillalabs.co/blog/social-sharing.html).
    ```
  2. adamcbrewer revised this gist Feb 22, 2015. 1 changed file with 3 additions and 1 deletion.
    4 changes: 3 additions & 1 deletion share-intents.md
    Original file line number Diff line number Diff line change
    @@ -46,4 +46,6 @@
    <meta property="og:image" content="{image_url}">
    <meta property="og:description" content="{description}">
    <meta property="og:site_name" content="{site_name}">
    ```
    ```

    [Source](http://guerillalabs.co/blog/social-sharing.html).
  3. adamcbrewer created this gist Feb 22, 2015.
    49 changes: 49 additions & 0 deletions share-intents.md
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,49 @@
    ## Twitter
    ```html
    <a href="http://twitter.com/intent/tweet?url={url_encoded_url}&amp;text={url_encoded_text}&amp;hashtags={url_encoded_hashtags}">Tweet This</a>
    ```

    ## Tumblr
    ```html
    <a href="http://www.tumblr.com/share/link?url={url_encoded_url}&amp;name={url_encoded_post_title}&amp;description={url_encoded_post_text}">Share on Tumblr</a>
    ```

    ## Reddit

    ```html
    <a href="http://www.reddit.com/submit?url={url_encoded_url}&amp;title={url_encoded_title}">Share on Reddit</a>
    ```

    ## LinkedIn

    ```html
    <a href="http://www.linkedin.com/shareArticle?mini=true&url={url_encoded_url}&title={url_encoded_title}">Share on LinkedIn</a>
    ```

    ## Pinterest

    ```html
    <a href="http://www.pinterest.com/pin/create/button/?url={url_encoded_url}&amp;media={url_encoded_image_url}&amp;description={url_encoded_description}">Pin It</a>
    ```

    ## Google+

    ```html
    <a href="https://plus.google.com/share?url={url_encoded_url}">Share on Google +</a>
    <!-- consult OG tags -->
    ```

    ## Facebook

    ```html
    <a href="https://www.facebook.com/sharer/sharer.php?u={url_encoded_url}">Share on Facebook</a>
    <!-- consult OG tags -->
    ```

    ## Open Graph tags
    ```html
    <meta property="og:title" content="{title}">
    <meta property="og:image" content="{image_url}">
    <meta property="og:description" content="{description}">
    <meta property="og:site_name" content="{site_name}">
    ```