Reading scheduled posts via Graph API /feed - facebook-graph-api

Is there a way to pull scheduled posts via Graph api using /feed method
I don't think there is, but I wanted to ask.

Related

Google Admin SDK API for Mail Log Query

Does anyone know if the google Admin SDK API has functionality for querying it's E-Mail log search?
The functionality I'm referring to is found [1].
From the reading, It appears to be only available via the Admin Console and I was able to find any reference to it in the API docs.
If such is not available, does anyone know off the top of their heads, whether or not writing a screenscaper/bot to do these queries independent of an API would violate TOS?
References:
1. https://support.google.com/a/answer/2604578?hl=en
To your first question: There is not currently a way to get the email logs via the API. People have been looking for it for some time.

Facebook Graph API Real-Time Updates when liking a post. Is it possible?

Using the Graph API to receive updates in real-time, is it possible to be notified when someone likes a post made by another user?

Twitter API access using Python (newbie:Help Needed)

How can i get twitter information (number of followers, following, etc.) about a set of twitter handles using the Twitter API?
i have already used Python-Twitter library but this only gives me information about my own twitter account, but i need the same for other twitter users (i have a list).
Can you please guide me in the right direction? or refer to some good blogs/articles
If you want the latest tweets from specific users, Twitter offers the Streaming API.
The Streaming API is the real-time sample of the Twitter Firehose. This API is for those developers with data intensive needs. If you're looking to build a data mining product or are interested in analytics research, the Streaming API is most suited for such things.
If you're trying to access old information, the REST API with its severe request limits is the only way to go.

Regarding Graph Api Limits

I am able to interact with Facebook through Graph Api and fetching feeds
https://graph.facebook.com/enery/posts?access_token=+fbaccToken.FbAccToken__c+&limit=100
i am able to fetch the feeds from Facebook, but i want to know about Graph API limits.
what are the Graph API limits ? how many API requests we can make per day ? is there any other limits on Facebook .
This is already covered in other threads, like that: Limit on number of Graph API calls
Interesting Link: https://developers.facebook.com/policy/
Each app is given an allotment of 200 API calls per user in any given 60 minute window.

How does the MyPad iPad app access Facebook Messages, including writing them?

The Graph API documentation says that the (invite only) message API endpoint is read-only.
The MyPad iPad app allows users to both read and compose messages.
Facebook has two APIs at present. The Graph API, which is what all developers should be using, and the REST API which they are in the process of depreciating. While they advise people to use the Graph API, it still lacks features found in the REST API. One of these would appear to be the ability to send messages. Details on the REST API can be found at their documentation page
Neither graph nor rest API can be used to send inbox messages to any user.
Mypad uses the other way around, which use m.facebook to compose and send(POST) messages directly.
of cos, it requires massive understanding of m. site of facebook. And problem is expected when facebook modify any structure on their m.site one day.