You may crucify me for this, but the link for "Support - Drive API" on the Google drive SDK website itself took me here - on the SO forum to put up a new question, so thats exactly what I'm gonna do as I didnt find any other useful info elsewhere.
Is there any way at all, and if so, where could I get any documentation/help/examples for accessing Google Drive from my delphi application? The online SDK seems to only allow use for iOS, Web and Android devices... no Desktop api available?
I know about TAdvGDrive component that comes with Tms Cloud Pack, but am looking into a solution that wouldn't cost me 100$ to get it done.
I've done this using REST (unfortunately I can't post the code here because was a private work for a customer). Anyway you can check for the Google Drive API REST documentation here. Starting with Delphi XE5 you can use the REST Client Library (If you are using an older version of Delphi you can use Indy or another library to build a basic REST library). I'm not aware of any sample about using The Google Drive SDK REST and Delphi, but you can start reading the RESTDemo Sample App, and check the Google documentation.
UPDATE (01/03/2018) - LINK RESTORED
I just found an article to access the Google Drive SDK using REST and Delphi here.
Related
I am working on an electron app and was wondering which APIs from Node are included in Electron and if there are any differences.
For example, I know that fs is included, but I am wondering about other APIs like util.promisify. I haven’t found anything in the docs about the supported APIs.
Electron actually is a node.js app so the full node API is available from the used version. It is pretty much always the most recent version (at least in one month) but you can check it with
process.versions
in any Electron app
I need to embed cognos analytics reports in my web application with a high degree of integration such as custom UI of reports list, custom UI of report controls and so one. As far as I understand sdk is intended for this purpose, but i cant find any normal guide / tutorial, even hello world example of SDK usage. Please, tell me where it can be found?
The Software Development Kit Developer Guide is available online :
https://www.ibm.com/support/knowledgecenter/en/SSEP7J_10.2.2/kc_gen/com.ibm.swg.ba.cognos.cbi.doc_dev_toc-gen8.html
You can find a pdf version of this documentation after the installation of the SDK component of Cognos 10.x (can't find a pdf version for cognos 11.x but it's probably the same guide)...
Default path : C:\Program Files\ibm\cognos\c10_64\webcontent\documentation\en\dg_sdk.pdf
And finaly you can find a lot of SDK samples in this place :
http://www-01.ibm.com/support/search.wss?q=SDK%20Sample
I'm trying to find out what is the license/terms for the iOS version of the library : https://developers.google.com/vision.
Their Cocoapod page mentions both "Custom" in the upper right corner and Apache further down the page : https://cocoapods.org/?q=GoogleMobileVision
I'd like to have the link to the real licensing terms on their website but I can't find it. Looking at the header files themselves, their is not a single copyright claim either.
And finally, if the library is open sourced, where can I find the source code?
Thanks!
So, I opened an issue under the Sample project on Github to inquire about the actual FaceDetection library license and they answered. The actual library is NOT open source and is licensed under those terms : https://developers.google.com/terms/
See this link about Google Cloud Vision API prices, I don't know if this pricing formula is also for Google Mobile Vision API.
I want to use MS Help Viewer to create a help system for our application. The documentation suggests this is possible. I found however no way to install the Local Help Viewer and the required Help Library Agent which is supposed to intercept and process help requests without installing visual studio. I also see no obvious way on how to integrate Help Library Manager in a new application: where is the API and the docs? I can find neither in HelpViewer SDK
For the moment (sept 2011) it looks like MS Help Viewer is not designed to be used outside Visual Studio although things may change in the future. Waiting for an announcement from MS.
I am building a Blackberry application using Phonegap, and would like to use Google Analytics to track some usage in it. Thanks to dodgy Blackberry browsers, XHR doesn't really work. There is a replacement in Phonegap that does work fine, but I need to replace the call in the Google Analytics library with the replacement in order for it to work. That would be easy if I could find a non-minified version of that library, which seems like it would be easy, but hasn't so far. I'm probably just missing it somewhere, but is there a non-minified version of the GA Javascript code somewhere that I can use and modify?
AFAIK Google does not officially provide a non-minified version of their async code (nor do they officially offer it for download to host yourself like they did with older versions, though I suppose there's nothin' stopping you from yanking it and doing it anyways).