Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8497065
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T00:01:19+00:00 2026-06-11T00:01:19+00:00

When adding a link post in Facebook, a nice looking description (containing a snippet

  • 0

When adding a link post in Facebook, a nice looking description (containing a snippet of text from the linked page) and thumbnail are automatically added to the post.

Is there a way to do this automatically using the Facebook API? I am inclined to think that there is not, because posts added by IFTTT, a popular web application that uses the Facebook API, do not contain descriptions. I am unclear as to whether this is a limitation with the Facebook API, and whether there is any way around it.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T00:01:20+00:00Added an answer on June 11, 2026 at 12:01 am

    Yes, it’s possible. You can use the Graph Api Method /profile_id/feed. The method receives the arguments message, picture, link, name, caption, description, source, place and tags. The facebook organize the parameters in a “nice looking summary and thumbnail”.

    You can get more information in the publishing section in the link http://developers.facebook.com/docs/reference/api/

    In c#:

            public static bool Share(string oauth_token, string message, string name, string link, string picture)
            {
                try
                {
                    string url =
                        "https://graph.facebook.com/me/feed" +
                        "?access_token=" + oauth_token;
    
                    StringBuilder post = new StringBuilder();
                    post.AppendFormat("message={0}", HttpUtility.UrlEncode(message));
                    post.AppendFormat("&name={0}", HttpUtility.UrlEncode(name));
                    post.AppendFormat("&link={0}", HttpUtility.UrlEncode(link));
                    post.AppendFormat("&picture={0}", HttpUtility.UrlEncode(picture));
    
                    string result = Post(url, post.ToString());
                }
                catch (Exception)
                {
                    return false;
                }
    
                return true;
            }
    
            private static string Post(string url, string post)
            {
                WebRequest webRequest = WebRequest.Create(url);
                webRequest.ContentType = "application/x-www-form-urlencoded";
                webRequest.Method = "POST";
    
                byte[] bytes = Encoding.ASCII.GetBytes(post);
    
                webRequest.ContentLength = bytes.Length;
    
                Stream stream = webRequest.GetRequestStream();
                stream.Write(bytes, 0, bytes.Length);
                stream.Close();
    
                WebResponse webResponse = webRequest.GetResponse();
    
                StreamReader streamReader = new StreamReader(webResponse.GetResponseStream());
    
                return streamReader.ReadToEnd();
            }
    

    UPDATE:

    Open graph protocol meta tags: http://developers.facebook.com/docs/opengraphprotocol/

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I know that there's no API from Facebook for adding @mentions in the post
I had an earlier post link text where someone said I had my pointer
Sorry if it is a duplicate post. link text but i didnt get any
I am using ckeditor in phpbb. when adding content in my post page. I
Today, I tried to post a link from my website on my wall, but
I was working on a site recently and we adding an RSS link to
i am adding more than one link button during runtime but they all have
I am adding a KMZ file through network link on a ADD KMZ button's
I'm having problems adding a new table row by clicking the link_to_add function link.
I link with Qt statically, so can linker or some other tool avoid adding

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.