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
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?
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.
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.
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.
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.