Edit
by Jesús Ortega - 9 years ago (2015-07-04)
Interact with Google Docs
| I need to open Google documents from PHP application. I would like to see if anybody has experience in that.
|
- 3 Clarification requests
5.
by Ganza Respice Respinho - 6 years ago (2018-09-17) Reply
3.
by Karl - 9 years ago (2015-07-28) Reply
You could use the Manuel Lemos OAuth class or use some simple links with file_get_contents or get_data, curl.
4.
by Jesús Ortega - 9 years ago (2015-07-28) in reply to comment 3 by Karl Comment
thanks a lot Karl
I've used the examples showed in this page from google- developpers:
api-client-library/php/auth/web-app
I've checked too Manuel Lemos Class Class and it was too very useful
thanks again
Jesús Ortega
1.
by Samuel Adeshina - 9 years ago (2015-07-05) Reply
What exactly do you want, a 'package recommendation' or an 'experience'. If you seek for the latter, you could post a job recommendation on the site but you're in the right place if what you need is a php class that can retrieve information from google docs
2.
by Jesús Ortega - 9 years ago (2015-07-06) in reply to comment 1 by Samuel Adeshina Comment
Hi Samuel,
thanks for your comment. What I'm trying to find the way (via php classes) to replace an application to hadle MS office word documents for Google Documents, so I need to authentificate in Gdrive (I've seen a php class post by Manuel lemos...) and later to generate and uploading documents to google docs
thanks again
Jesus Ortega
Ask clarification
1 Recommendation
PHP OAuth Library: Authorize and access APIs using OAuth
This class can authorize the access of users to an API using the OAuth protocol.
It abstracts OAuth1 (1.0 and 1.0a) and OAuth2 in the same class, so you can use the same code to authorize the access on behalf of the current user any API that supports any version of the OAuth protocol.
It works on Linux, Windows and any other platform without the PECL PHP OAuth extension.
The access tokens are stored by default in session variables, but there are sub-classes specialized in storing the tokens in database tables, files or cookies.
It provides built-in support to several popular OAuth servers, so you do not have to configure the class manually with all OAuth server specific details.
Currently it provides built-in support for many OAuth servers. Every other OAuth server is supported setting end point URLs and other parameters using specific class variables. Additional servers may be supported without changing the main class by configuring a separate JSON configuration file.
The class can also send requests to API using the previously obtained OAuth access token.
It also supports 2 legged API access, so it can send signed API requests that do not require user authorization.
For mobile or other applications that the user cannot be redirected back to the client application site, this class supports pin based authorization either using OAuth 1.0a or OAuth 2.0.
It can as well obtain access tokens for specific users given their user name and password or using client credentials. It supports OAuth 2.0 authorization flows authorization_code, password and client_credentials.
For servers that support offline access like Google and Box.net, the class can also verify if the access token expired and refresh the token value before sending an API call, without requiring the user presence.
For servers that support re-authentication like Facebook, the class may also force the user to enter this application password on the authorization page.
For servers that support revoking access tokens, the class supports this functionality to invalidate a previously retrieved token.
For OpenID Connect servers based on OAuth2, the class decoded and returns the id_token JSON Web Token (JWT), so applications can use the user details such as name and email returned in the id_token response.
Here is the list of OAuth servers that have built-in support and tutorial example scripts:
- 37Signals
- Amazon
- AOL
- Bitbucket
- Bitly
- Box
- Buffer
- CharterSpectrum
- CharterSpectrumQA (CharterSpectrum Quality Assurance)
- Copy
- Dailymotion
- Discogs
- Disqus
- Dropbox (Dropbox with OAuth 1.0)
- Dropbox2 (Dropbox with OAuth 2.0)
- Etsy
- Eventful
- Facebook
- Fitbit
- Flickr
- Foursquare
- Garmin
- github
- Google
- Google1 (Google with OAuth 1.0)
- iHealth
- iHealthSandbox
- imgur
- Infusionsoft
- Instagram
- Intuit
- Jawbone
- LinkedIn
- LinkedIn2 (LinkedIn with OAuth 2.0)
- mail.ru
- MailChimp
- Mavenlink
- Meetup
- Microsoft
- Misfit
- oDesk
- Odnoklassniki
- Paypal
- PaypalApplication
- Pinterest
- Pipedrive
- Polar
- Quire
- Rdio
- Reddit
- RunKeeper
- Salesforce
- Scoop.it
- StockTwits
- SurveyMonkey
- TeamViewer
- Tumblr
- Twitter
- Vimeo
- VK
- Withings
- Wordpress
- Xero
- XING
- Yahoo
- Yahoo2
- Yammer
- Yandex
| by Manuel Lemos package author 26695 - 9 years ago (2015-07-05) Comment
To access Google Docs you can use its API.
Since Google APIs are based on OAuth, you can use this class to access Google Docs files on behalf of a given user that authorizes the access to his documents.
Take a look at the login_with_google.php example script and adapt the URL and parameters of the CallAPI function call to make it perform the API operations on Google Docs that you need. |
- 1 Comment
1.
by Jesús Ortega - 9 years ago (2015-07-06) Reply
Thanks Manuel, I'll try it, and it looks nice
Do you know if there is any class to upload and convert documents to Google Drive??