Facebook ads comments - facebook

I want to obtain the comments on ads asociated to a fanpage. I already get all the comments associated to posts, but I want the ones on ads that are not linked to a post. Is this possible? If yes, how can I do it?

Related

Is it possible to get information like the reactions or likes from a certain post in a page that isn´t mine from facebook graph API?

I´m doing a special project where I need to get info like comments, likes and reactions from a page´s post in facebook but i don´t know if it´s possible or not. I can get the info from my own page with Facebook Graph API but in the final result I need to get the info from another page that isn´t mine
I´ve been searching on google and stackoverflow if it´s possible to get what I need but it seems that the answers are from a long time ago and I want to know if it´s possible to do it now after the news in the past year about Cambridge Analytica doing nasty things with the data
No, even with Page Public Content Access features you cannot get a public page's post likes or reactions, but only comments (but w/o the actual user details, so only the comment text and date/time).

Is there any way I can display all post from facebook and not only mine?

I'm working on an app in which I intend to display the existing posts from my Facebook wall but in another design. I succeeded in getting my personal posts but for some reasons I cannot find the posts of the other users in my feed. Is there any way in which I can get all the post from my wall including my friends? Is this even possible? I could not find an answer yet, not even in the docs.
Thanks!

Facebook Graph feed does not contain reply to comments

We are fishing posts, comments and so on for clients that have business pages on Facebook using the feed. Now Facebook permits business pages to reply to comments. Sadly in the feed, the replies to the comments are not included. Does anyone know how to include these in the feed?
I can't believe that we need to make a call for each comment one by one to Facebook using FQL or similar just to know if it has replies.
Any information is very welcome.
You have to find the post id to get all the comments-
select text from comment where post_id=

Possible to create newsfeed ad hidden from my page?

We are a ads company, and we have a page on FB. We are trying to use ads API to create tons of newsfeed ads. In my experiment a newsfeed ad is created successfully, but it's displayed on our page as well. When there're tons of ads, our page will be flooded. I know I can change the post to be hidden, or use unpublished post, but will FB users be able to view such ads? I mean, I want these ads to be advertised by FB on user's wall but not on our company's wall.
I know I can change the post to be hidden, or use unpublished post,
That is how you create news feed ad for a post from your page which is not not on the Page's timeline. It's documented here and the feature exists for the exact use-case you've outlined in your question : https://developers.facebook.com/docs/reference/api/page/#unpub_scheduled_posts

Link or connect facebook comments plugin to comments on fan page wall posts

Facebook comments plugin - as far as I understand, if I have put the facebook comments plugin on a post web page, and the permalink of the post being commented on matches the base URL, then comments are stored via facebook using my post permalink.
Lets say if I post the permalink onto my facebook page wall (which I am the admin of), the open graph tags come into play, all the relavant data is pulled in, fb:admins, fb:app etc.
But is it possible to connect my facebook page (using my facebook page ID) to that permalink - so that comments posted on the page using comment plugin, connect/link with the post comments on my facebook page wall?
Thanks
This is currently not possible. We've implemented custom solution using Facebook Application and Facebook Javascript SDK on the website itself. You need to query the comments table of a specific Page post via FQL using your app access token from your server to retrieve all comments and render them on the page.
Then you need to provide user with several entry points for several states in order to enable posting for them. You need to solve four cases:
User doesn't like the page and didn't authorize your app
User doesn't like the page and authorized your app
User likes the page and didn't authorize your app
User likes the page and authorized your app
User needs to like your page and authorize your app with publish_stream permission in order to be able to comment on your page posts via your website. Of course you need to maintain reference between posts on your page and posts on your website.
The website where we did this a few years ago is BIGGBOSS click on "Komentáře" and find the same post on Facebook with the same comments.
As far as I understand your question its not possible to connect the comments from the commentbox, integrated in your non-facebook page (e.g a blog of yours), to the comments which are posted to a post on your fanpage.
The only solution would be to build an custom commentbox with the open-graph and publish the comments to the fanpagepost and additionally extract the comments out of the fanpage to display them on your blog.
But this requires accepting permission dialog before people are able to comment on your blog which would probably decrease the comments made. You would lose the benefit of the built-in commentbox.