SendGrid API Status - sendgrid

Is there a way to programmatically get the status of the SendGrid API? For example:
https://status.sendgrid.com/
This page gives that information. I see there is a call to https://status.sendgrid.com/api/v2/status.json on this page, but that seems to give just a general status. I'm more interested in the individual items in this list.

There's no official API but you can make use of the "Subscribe To Updates" feature and follow the RSS feed, Twitter account, or add a webhook to receive updates.

Related

Looking for guidance for Facebook Messenger's Webhook for page

I would like to know if there is a way (using any server side calls) to automate the subscribing to Messenger Webhook for specific Facebook Page. The user gives us access and we have the page's access token but we don't know how to make the subscription to page's messenger's events programmatically. All the manuals/docs show how to add the page using Facebook UI, but we need to do that using their API.
Could you guys point me to the right documentation if there is any.
THanks

Facebook Chatbot delete messages by id

does anybody know if it is possible to delete messages by id.
For example I have an update for my content so that the user must not see any outdated messages. Didn't find anything in the graph API...
Message docs
thx
franzus
Facebook does not allow you to delete messages using the Messenger API, or the Graph API
I am not aware or, nor have found documentation for, a method that does DELETE operations (or UPDATE for that matter) on a FB Message.
The Messenger Docs provide methods for sending messsages, subscribing a page to your application's webhook, retrieving user profile information, and setting various options for your bot.

Webhook for users checkins on facebook api?

I'm trying to add a webhook for tagged_places for users which authorized my app. It's possible?
I trying to use subscriptions as described here for checkins:
https://developers.facebook.com/docs/graph-api/webhooks/
But I wasn't receiving any POST request, just the GET request for make the subscription.
Does anyone have any ideia how do that?
I stumbled upon your question because I want to do pretty much the same thing. From what I have read so far it isn't possible, since the tagged_places field is not listed as a field which supports webhooks.

Can i programatically get the link backs from Facebook to my web-page?

I want to fetch the link backs from facebook to my web-site. Basically I want to fetch how many users have come to my web-site from the like/shared link posted over facebook for my web-site. Can i fetch these values using any of the FB API??
FB API doesn't have that ability. Here's what you do. On your website check the HTTP_REFERER attribute of each web request. When the referrer is Facebook, track it. Then you can know the counts. If you cannot do that, then you can use something like Google Analytics to do the tracking and reporting.

Check feed/post update from user's wall without calling (pulling) graph api periodically

I know how to use graph api - https://graph.facebook.com/{id}/feed|posts to get user's and page's feed.
I also know that facebook provides an subscription API. But I can not use it to check feeds of users i am interested but not our application users (ex: A super idol I am interested but who is not our application users. I want to check not only posts by him but also messages posted by his fans)
Is there a notification service to notify me (callback) the updating of user's feed, such that I don't need to pull graph api periodically to check the updating?.
Thanks.
"I want to check not only posts by him but also messages posted by his fans" and "but not our application users"
This sounds like a stalker app. http://developers.facebook.com/policy/ Facebook says you are not allowed to do that.