How to query Facebook comments plugin comments information using C#?
问题 I am trying to fetch comment information from this page (scroll down to **Comments Plugin Code Generator* section) I am using FacebookClient class from Facebook Nuget package to fetch the data. My code is the following: string oauthUrl = $"https://graph.facebook.com/oauth/access_token?type=client_cred&client_id={appId}&client_secret={appSecret}"; string accessToken = client.DownloadString(oauthUrl).Split('=')[1]; // this is included as a sanity check that the client can fetch data (correct