Is there search query data download function in New Google Webmaster Tool API? - google-search-console

I'd like to ask about this blog entry:
Deprecation of the old Webmaster Tools API
http://googlewebmastercentral.blogspot.jp/2015/03/deprecation-of-old-webmaster-tools-api.html
I'd like to use "Python search query data download" function, but according to this blog entry, this function will be discontinued, and replaced by an new API in the upcoming quarters.
I have a question on this. At this moment, should I use the old version or the new version?? I searched api reference pages, I cannot find the new version.
Anyone have an answer on this?

Related

Github Search API for searching code using a repository name

I am using Github search APIs of enterprise version (https://{{GitBaseInternalURL}}/api/v3) in my code.
I am able to search the code using the endpoint below:
"code_search_url": "https://{{GitBaseInternalURL}}/api/v3/search/code?q={query}{&page,per_page,sort,order}"
However I want to search the code based on the given repository name.
I have searched a lot of content online and I could not find any suitable endpoint for my use case.
Can anybody help me find the right endpoint for my purpose?

BI Platform REST API: add to favorite folder?

I'm redeveloping a Crystal Reports UI using the Business Intelligence Platform REST API (4.2 SP5), and I'm finding some gaps in the API.
The one I'm stumbling over now is how to add a report to a user's favorites folder. I can find the user's folder by querying with the /v1/cmsquery endpoint, but I can't take that id and use it in the /infostore/###/children endpoint. And I also can't figure out how to take an existing report from that infostore tree and create a shortcut to it in the user's folder. (Which appears to be how the favorites folder works, under the hood.)
Any direction -- particularly to good documentation or examples -- would be helpful. I was already looking at the developer guide, but it's pretty limited.
(Edit for typos)

show diff on word documents

I'm designing a web application that will enable users to upload docx documents and will the show the diff between each revision.
I don't know how to approach the problem. Is it a bitmap, how do I decode the doc to show changes. Do Microsoft has an API I can use to simply send 2 word docs, and it will return the changes between the two?
I also have the same question on google docs. I think with google drive it's simpler. Saw this API
If anyone has done something similar or has an example to some similar app, I would be grateful.
Have you looked at Word's Compare tool? See under Review|Compare. Word's API also support the compare tool's automation (e.g. via VBA).
To use Word's API, you'll need to automate Word. For the details of the method, see: https://msdn.microsoft.com/en-us/library/office/hh128820(v=office.14).aspx
See also: https://code.msdn.microsoft.com/windowsdesktop/Compare-Two-Word-Documents-043b2e1d

How to get a list recently modified files in Dropbox?

The question is how to list recently modified files in Dropbox account using their API?
Dropbox web UI can show a summery of recently changed files, but I couldn't find how to do it in their API documentation.
The Dropbox API doesn't currently offer any functionality for events or recents, but I'll be sure to pass this along as a feature request.
The closest alternative is to track activity by staying up to date with /list_folder and /list_folder/continue:
https://www.dropbox.com/developers/documentation/http/documentation#files-list_folder
https://www.dropbox.com/developers/documentation/http/documentation#files-list_folder-continue
To Track any modifications in dropbox, webhooks will be the best option.
refer: https://www.dropbox.com/developers/reference/webhooks

API Documentation for Guzzle?

Where is the API Documentation for Guzzle?
There are these two links (which appear to be the same thing):
http://guzzle.readthedocs.org/en/latest/quickstart.html
http://docs.guzzlephp.org/en/latest/
But nowhere can I find in depth API documentation (even just a basic one generated from the Docblocks which were neatly created in Guzzle's source code).
Does anyone know where to find it?
Sadly, according to the maintainer of Guzzle: "I personally don't find API docs that useful" (ref: https://github.com/guzzle/guzzle/issues/750) so he stopped maintaining them in Guzzle 4 and up. There are docs for 3.7 available via the Internet Archive, but that's it.