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 7749645
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T11:05:39+00:00 2026-06-01T11:05:39+00:00

In my Desktop application, I want to read the Wall posts,Messages, Like counts etc

  • 0

In my Desktop application, I want to read the Wall posts,Messages, Like counts etc for a particular Facebook page (not for a facebook user)

I went through this post get user data(on stackoverflow). I want to achieve the same thing but for a FB page.

I am ready to create a facebook application to achieve this and have the user to give permission to pull the data.

Please advice on the above.

  • 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-01T11:05:40+00:00Added an answer on June 1, 2026 at 11:05 am

    You need an access token to get page data from Facebook.
    First get an access token using below URL with your facebook application’s parameters:

    https://graph.facebook.com/oauth/access_token?type=client_cred&client_id={yourappid}&client_secret={yourappscret}

    Then you can call the Facebook Graph API with returning token

    General: https://graph.facebook.com/wikipedia?access_token={token}

    Posts: https://graph.facebook.com/wikipedia/posts?access_token={token}

    An example code would be;

    class Program
    {
        static void Main(string[] args)
        {
            var client = new WebClient();
    
            string oauthUrl = string.Format("https://graph.facebook.com/oauth/access_token?type=client_cred&client_id={0}&client_secret={1}", "appid", "appsecret");
    
            string accessToken = client.DownloadString(oauthUrl).Split('=')[1];
    
            string pageInfo = client.DownloadString(string.Format("https://graph.facebook.com/wikipedia?access_token={0} ", accessToken));
            string pagePosts = client.DownloadString(string.Format("https://graph.facebook.com/wikipedia/posts?access_token={0} ", accessToken));
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want a desktop application to provide a smooth user experience through deployment. In
I want to build a desktop application - a map viewer , something like
I really want to create a stunning-looking GUI desktop application that looks like, for
I want to make a desktop application that can read the SMS from the
Window c# Desktop Application I want to initialize a DataRow object with the selected
I want to create a Java Desktop Application and want to employ some mechanism
I am developing a Java Desktop Application and want a light database that can
I want to build desktop application for Windows OS and use Google Drive to
I want to produce a desktop application with a very simple GUI (a background
I want to develop a desktop application using python with basic crud operation. Is

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.