Is there a way to access the minor changes via the revisions feed?
Thanks
J
Google Docs has no concept of minor and major revisions and all revisions are available via the Revisions feed. If you are referring to pruned revisions, there is currently no way to retrieve the individual revisions that were pruned.
Related
As part of our new project we are trying to build a report using tableau.The report presents the information for a sprint as per the requirement.Currently we are manually updating the data source for the report.
"Is there a way through which i can access the JIRA information for a sprint and store it in a database so that i can abolish the manual updates".
Yes, due to Jira's popularity there is a Jira API for the vast majority of programming languages with which you could accomplish this.
I personally would suggest the jira-python api due to it's vast documentation that can be found here: https://jira.readthedocs.io/en/master/api.html#jira.
Then you would simply call sprints(...) or sprints_by_name(...), and iterate through the results printing relevant information into your database.
Having a history of the subscriber count of specific subreddit is data that I need for data analysis.
I found a page which is doing exactly that e.g.: http://redditmetrics.com/r/worldnews
Is there an official endpoint in the reddit api for getting a history of subscriber counts and how the popularity of a subreddit has evolved until now or are there any other reliable ways to do this?
Tracking the data on my own is not an option because I'm interested in subscriber counts in the past and not in the future past.
Unfortunately there's no endpoint for that within the reddit api. One option could be to scrape sites like that for past data (with permission hopefully). And maybe the only other option would be to ask those sites for raw data (who knows, it might work). Good luck!
Is it possible to use the Microsoft Graph API to create/read/delete tags for photos stored in OneDrive?
I found an old UserVoice request from 2015 but no recent news.
Currently no, this is not supported by the current API. As noted in the UserVoice you referenced, it is on the roadmap. However, I do not have an ETA for when this might show up.
I would suggest casing your votes and adding any additional comments to the existing request. This will help the OneDrive team with prioritizing this feature in their planning.
Can anyone please share me the idea to retrieve the deleted and Edited tweet list(user timeline) after the given time? using twitter rest API.
AFAIK this isn't part of the REST API, I think you have 3 choices here.
Avoid permanently caching things like timelines and tweets, and refetch timelines which will be updated after deletes.
Periodically refetch timelines and process the deltas for overlapping time ranges.
use the streaming API, which unfortunately would introduce a huge amount of complexity https://dev.twitter.com/streaming/overview/messages-types#status_deletion_notices_delete
I am wondering if anybody has any information or news regarding the API (if it exists yet?) of the new YouTube Cards (replacing the old annotations).
Is there any beta api information out yet?
I'm referring to this:
Thank you for your help
You can track the YouTube Developer Blog and also subscribe to the revision history of YouTube Data API v3, in order to get the latest info on the API, as soon as it is available. Currently (as of the last version of the API - April 27, 2015) there is no way to manage Cards, and I suspect that there would not be, at least not anytime soon.
I think so because currently even annotations are not fully supported by YouTube Data API v3 (they only added support for setting invideo annotations in v3). I suppose there is a specific reason that this feature has been missing for so long- maybe they don't want to unleash it because they foresee some problems that may arise if they do. It has been requested numerous times in the past by the community (See the last posts in this thread, where a YouTube representative has answered, also this question).
I'll investigate further to see if I can find any more info on future revisions of the API and will update my answer. Meanwhile, you can submit a feature request for Card Management API here. Good luck!