Commenting on instagram ad post - facebook-graph-api

I only see GET and DELETE calls,
https://developers.facebook.com/docs/marketing-api/guides/instagramads/post_moderation/v2.6
https://developers.facebook.com/docs/marketing-api/guides/instagramads/setup/v2.6
Is possible to post a comment on an instagram Ad post, and How?

Apparently this feature is not supported yet.

Related

Facebook Ads API - get instagram ad post's replies

https://graph.facebook.com/v3.2/'.$effective_instagram_story_id.'/comments?fields=created_at,id,message,instagram_user{id,username}&access_token='.$access_token
This api method returns only top-level comments, but I need to get replies too. How to achieve this?

Is it possible to get Facebook checkins of a user using an Facebook app?

I am trying to build a an app that gets user's Facebook checkins. Is it still possible to get checkin data from Facebook API. I did some research and learned it might not be possible anymore.
You can use the following endpoint: /me/tagged_places. You will need the user_tagged_places permission.
Check out the documentation here.

Facebook API: user_interests deprecations

The Facebook API user_interests permission will soon be deprecated. How can I get user interests without calling this permission?
You can't. The endpoint is removed from version v2.3 on. There is no work-around.

how can i get the details of a photo posted to facebook from instagram

I was trying to access the details(likes and comments) of the photos which are posted to facebook from instagram app.
I coulnd't find any way to get that.
how can i confirm that a photo is posted from instagram?
Did you try the facebook endpoint /me/instapp:take ?
I can at least get my photos... don't know about public pictures...
Now I am able to get my instagram photos and others as well but the thing is we can't access anybody's instagram photo details for that we need to have access token of that user.

Django-facebook: how to repost to a group or fanpage

Please help, I'm not familiar with facebook API.
I have a facebook app with a token and secret.
My users are happily authenticated via python-social-auth.
I've installed django-facebook.
I want to create a group (or a fanpage) and make my content automatically reposted to facebook on model.save()
How do I implement this?
Take a look at the Art&Logic blog with their Tutorial: Posting to Facebook from a Django App. I think that's exactly what you're looking for.
They use facebook-sdk instead of django-facebook, though.