Is any way to use Google docs API in offline (local intranet)?
I need to open Excel file in browser like Google docs.
Thanks.
P.S. Language of programming - PHP
Related
Can I write (and read) files using PHP in my google cloud storage when Im not using a Google App Engine?
In other words, may I have my website running on another web hosting and use google cloud to store (and read in future) my JSON files only? the JSON files need to be written on runtime and by users.
you can store any files using any programming language like PHP to any cloud storage like google cloud storage or amazon s3, dropbox...etc
Checkout this documentation:
https://github.com/GoogleCloudPlatform/google-cloud-php#google-cloud-storage-ga
I'm using Google Cloud Storage for media. My website is stored elsewhere. I want to serve medias for client users (through web browser), but I don't want to use public images (I want "keys"). I think it's possible on app engine (building URL), but my question is:
Is it possible to build URL to Google Cloud Storage stored medias from another server with PHP ? Or is there an API for calling Google Cloud Storage if my site is not on App Engine ?
Hope it's clear enough. Sorry, I did not found answer (I'm a new user).
Yes, the google-api-php-client library can be used outside of AppEngine. There is a PHP Example Tutorial to help you get started.
I am trying to create a Google App Engine Web application in PHP that is capable of administering my Google Apps users and groups and create detailed per-user reports.
The built-in PHP API is appallingly inadequate with seemingly no functionality to perform user administration so I wanted to use the Google APIs Client Library for PHP but I'm having trouble including this API in my Google Apps project.
Can anyone suggest how I can best approach this?
Should I use the built-in PHP API provided by Google App Engine? If so, which classes can I use to perform user management?
How can I use the Google API PHP Cient together with my Google App Engine?
Should I just abandon Google App Engine and host the web app on my own servers?
Should I use something else like Java instead of PHP?
Thanks in advance for any help and or suggestions on how to proceed.
Did you do a quick google search on using the Google API PHP Client from App Engine?
Is so, you might have seen this article which I guess explains the entire thing for you.
In your project you need to select ADMIN SDK which should give you access to all api's realted to that. Directory API etc.
At least that is what I think and how I have it setup. Only since I am a very little skills I struggle to use the PHP library ;)
I want to start developing a tool that runs daily via cron for getting daily analytical data from one channel, or video, etc.. through the "Youtube Analytics API". And not what is the best way to approach it.
I have read the documentation of Google and and I have several questions:
I created the project in the console (https://code.google.com/apis/console/) but I doubt what kind of application I have to choose when I create a Client ID (Web Application, Service Account or Installed aplplication).
What PHP library use?
It's a very new API and not much information.
In the Google GData site there is a warning about that "Most newer Google APIs Google Data APIs are not Google Data APIs." and in the google-api-php-client, no examples of this API.
What is the best method for authentication in a cron?
As you can see I am very confuse, can someone help me, please?
Thank you.
1) It will be an installed application unless you will run it in a web server.
2) Use the official library, add the ytanalytics php library. Samples: https://github.com/youtube/yt-samples-php
3) You can do so by getting a refresh token from OAuth2 Playground and setting it in your youtube object.
Here it explains a little more.
And a step by step video.
I want to add a list of all files from my google docs and from dropbox on my website(not a google site). The code of my website is mostly in PHP. I am unable to find a PHP guide for Google Docs list API and dropbox API. Any help is appreciated thanks in advance.
Here's Google APIs Client Library for PHP. Link
You probably need to check this as well: Google Drive SDK
There's a tab for PHP example
3rd Party Dropbox PHP SDK and the Docs for the API generally. You will specifically want to look into the /metadata and /files (GET) calls