Les nouveautés et Tutoriels de Votre Codeur | SEO | Création de site web | Création de logiciel

seo Retiring the Google Documents List API v3 2013

Seo Master present to you: Author PhotoBy Ali Afshar, Tech Lead, Google Drive Developer Relations

Cross-posted from the Google Apps Developer Blog

With the arrival of the new Google Drive API v2, we are deprecating the Google Documents List API v3. We are confident that the Google Drive API covers all the functionality of the Documents List API, in addition to adding many improvements, including Drive UI Integration, a finer grained security model, and a better client library experience.

What does this mean for your app?

The Documents List API v3 will remain in action for more than a year, as per our deprecation policy, so there’s no rush, but we encourage you to migrate your code to the new platform. Documentation is available with samples in multiple languages and a migration guide outlining some of the major transition points.

If you have any questions or issues, please ask them on StackOverflow.com, where our team is waiting to hear from you.


Ali Afshar is an eternal open source advocate. He contributes to a number of open source applications, and is the author of the PIDA Python IDE. Once an intensive care physician, he has a special interest in all aspects of technology for healthcare.

Posted by Scott Knaster, Editor

2013, By: Seo Master

seo Announcing Version 2 of the Google Drive SDK 2013

Seo Master present to you: Author Photo
by Mike Procopio, Software Engineer, on behalf of the Google Drive SDK team

In April, we announced the first version of the Google Drive SDK along with a range of Drive apps. Built using the SDK, these apps bring life to the files people store in Google Drive. Today at Google I/O, we're announcing the next version of the Google Drive SDK with a number of updates including an expanded API, a simplified developer experience and mobile app support.


The new Drive API exposes all standard file operations as well as methods to list and search files, convert between formats, copy files, manage revisions, and share files with users. The API is based on open standards, including a RESTful service architecture, JSON data exchange format, and OAuth2 for authorization. And with a simplified design and drop-in client libraries available in eight languages, using the API has never been easier.

Users want to access their files in Drive from anywhere. Today, we're announcing full mobile support for Android and iOS apps using the Drive SDK. Mobile apps can securely use the Drive API to read and write files directly to Google Drive. Users can also "Open with" on mobile devices to view or edit content from their phone or tablet just like they do on the web. (Installation of apps via the Chrome Web Store is no longer required.)

We also introduced several new features for Drive apps for the web. Google Drive makes it easy to share files, and we’re bringing sharing to your apps with the familiar Drive sharing box. With just a few lines of JavaScript added to your app, users can share their files with the new embeddable sharing component. Also, users can now open Google document formats in any app that supports one of the many export formats available. For example, an app that faxes PDFs can now fax a Google document, spreadsheet, or presentation directly.

Finally, there are a handful of great new Drive apps that will soon join the many apps already available today. These new apps range from mobile photo editors for cropping photos on your phone to a web-based IDE for slingin' code in the cloud.

Want to make your application work with Google Drive? Full documentation on the Google Drive SDK is available at developers.google.com/drive, or if you're itching to start building, head to our Getting Started guide. Our team is on Stack Overflow to answer any questions you have when integrating your app with Google Drive.


Mike Procopio is a Software Engineer for Google Drive, focusing on all things Drive apps. He gets to leverage his passion for the developer and user experience by working on the next-generation APIs that help unleash Google Drive. Before joining Google in 2010, he was a machine learning researcher, and enjoys engaging in illuminating statistical discussions at every opportunity.

Posted by Scott Knaster, Editor
2013, By: Seo Master

seo Introducing Google Drive and the Google Drive SDK 2013

Seo Master present to you: Author PhotoBy Mike Procopio, Software Engineer

Today, we're announcing Google Drive—a place where people can create, share, collaborate and keep all of their stuff. Drive is a natural step in the evolution of Google Docs. Drive is built to work seamlessly with other Google applications like Google+, Docs and Gmail, and your app can too. Joining the launch today are 18 web apps that have integrated with Drive using the Google Drive SDK.



Integrating your application with Google Drive makes it available to millions of users. Drive apps are distributed from the Chrome Web Store, and can be used with any modern browser. Plus, your app can take advantage of Google's sharing, storage, and identity management features.



Create and collaborate

Google Drive allows for more than storage. Google Docs is built right into Drive, and your app can join the party. For example, Lucidchart is an online visual diagramming tool integrated with Google Drive. You can start a new Lucidchart or share your diagrams with friends or coworkers straight from Drive, just like a Google document or spreadsheet.

Store everything safely and access it everywhere

With Google Drive you can store all of your files and access them from anywhere. For example, MindMeister, an app for creating mind maps online, also lets you open files from popular desktop mind mapping applications. By integrating with Google Drive, MindMeister users can open their mind maps stored in Drive from any modern browser.

Search everything

Your app can also take advantage of Drive's storage, indexing, and document viewers. For example, HelloFax is a web application that lets you sign and fax documents from your browser. HelloFax users can now store all their inbound and outbound faxes in Google Drive, making them easy to find later. Plus, with automatic OCR, users can even search and find text in faxed images. Your application can store files of any type up to 10 GB in size or create file-like shortcuts to your application's data.

Want your application to work with Google Drive? Full documentation on the Google Drive SDK is available at developers.google.com/drive, or if you're itching to start building, head to our Getting Started guide. Our team will be on Stack Overflow to answer any questions you have when integrating your app with Google Drive. You can also bring your questions to our Hangout this Thursday at 10:30 AM PDT / 17:30 UTC.

Look for more posts about working with the Drive SDK on the Google Apps Developer Blog in the coming weeks.


Mike Procopio is a Software Engineer for Google Drive, focusing on all things Drive apps. He gets to leverage his passion for the developer and user experience by working on the next-generation APIs that help unleash Google Drive. Before joining Google in 2010, he was a machine learning researcher, and enjoys engaging in illuminating statistical discussions at every opportunity.

Posted by Scott Knaster, Editor
2013, By: Seo Master

seo Build collaborative apps with Google Drive Realtime API 2013

Seo Master present to you: Author PhotoBy Brian Cairns, Software Engineer

Google Drive lets users create Docs, Sheets, and Slides, collaborate on them in real time, and have their changes saved automatically. With the new Google Drive Realtime API, you can now easily add some of the same real-time collaboration that powers Google Drive to your own apps. This new API handles network communication, storage, presence, conflict resolution, and other collaborative details so you can focus on building great apps.

Developing for the Drive Realtime API is almost as simple as working with local objects. The API provides collaborative versions of familiar data objects such as maps, lists, strings, and JSON values and automatically synchronizes and stores modifications to these objects. Your application reads from and writes to these objects like any other local object. Change event handlers can be added to collaborative objects so that your app can react to changes from other collaborators.

Because the Drive Realtime API is based on operational transformation (OT), local changes are reflected instantly, even on high-latency networks. The Drive Realtime API automatically transforms changes to the data model so that every collaborator stays in sync.

If basic collections aren't enough for your application, the Drive Realtime API supports custom objects and references, including trees and arbitrary graph structures. As with other collaborative objects, the Drive Realtime API automatically synchronizes these objects with other collaborators and stores them in Drive.

Because presence is important in collaborative applications, the Drive Realtime API also keeps track of who is connected to your application and provides your app with events for when collaborators join, leave, or make changes.

UI showing 3 collaborators
Widget using the Drive Realtime API and showing the collaborators on a document

Neutron Drive, Gantter and draw.io have enabled realtime collaboration in their apps using the Google Drive Realtime API. Check out these apps to see the Drive Realtime API in action.


Collaborative code editing with Neutron Drive

Neutron Drive is an online editor for text and source code files stored in Google Drive. You can now collaboratively edit any text or source code files stored in Drive and get a realtime collaboration experience—shared typing, a view of active collaborators, cursor positioning, and selected text. This all comes in addition to the syntax highlighting and other advanced features offered by Neutron Drive. To learn more, watch the video:




Collaborative project scheduling with Gantter

Gantter is a free online project scheduling tool and Gantt diagram editor. It now allows you to collaboratively—and in real time— work on your project schedules. It even features an embedded chat powered by the Drive Realtime API. Watch the video below to see Gantter’s new realtime collaboration features in action.




Collaborative diagraming with draw.io

draw.io is a diagraming application that enables you to draw a wide variety of diagrams such as flowcharts, UML diagrams and even electronic circuits. You can now see updates from other collaborators instantaneously, with colored visual cues indicating who has changed the diagram and where that change occurred. Try the new draw.io collaborative beta at rt.draw.io and watch the video below.




Learn more about the Drive Realtime API

We built a collaborative colored cube puzzle so you can have some fun while trying out the Drive Realtime API and a Drive Realtime API Playground to take you through the API step-by-step. Both apps are open source so check out our Github repos.

Have a look at the Google Drive Realtime API technical documentation and start making your app realtime-enabled!


Brian Cairns joined the Google Drive team in 2011 and lives in Boulder, Colorado. He is the lead software engineer for the Drive Realtime API.

Posted by Scott Knaster, Editor
2013, By: Seo Master

seo Elevate your apps in Google Drive 2013

Seo Master present to you: Author Photo
By Nicolas Garnier, Developer Relations

When Google Drive launched, we also introduced the Google Drive SDK, which enables you to deeply integrate your apps into Drive. Using the Drive SDK, you can offer your users an experience similar to how Google Docs or Google Sheets interact with Drive. More than a hundred web apps now integrate with Google Drive in this way.

Today we are making several changes to Google Drive to help users more easily discover, connect and use these Drive-enabled apps.


Google Drive Create menu

The Google Drive Create menu now elevates Drive-connected apps to the same level as Google apps such as Docs and Sheets. This makes your Drive-connected apps easier to reach and more visible to Google Drive users.


New Google Drive Create menu

As you can see, we’ve made some space in the Create menu for your apps, which users can add by clicking on Connect more apps.


Browse and Connect Drive-enabled Apps

Google Drive users can now browse and connect Drive-enabled apps right from within Drive thanks to the new Connect apps to Drive dialog:

Connect some Google Drive-enabled web apps to your Drive

After installing an app, users can instantly start using your Drive app to create or open files directly from within Drive.

Opening a file in Google Drive with a connected app

If your app is already Google Drive-enabled and listed in the Chrome Web Store’s Drive collection, you don’t have to do anything new to take advantage of these new features. We will automatically pull all the information from your existing Chrome Web Store listing.

If your web app is not yet Google Drive-enabled, check out how you can integrate with the create-new and the open-with actions and then get your Drive-enabled app listed in the new Connect apps to Drive dialog.


Nicolas Garnier joined Google’s Developer Relations in 2008 and lives in Zurich. He is a Developer Advocate for Google Drive and Google Apps. Nicolas is also the lead engineer for the OAuth 2.0 Playground.

Posted by Scott Knaster, Editor
2013, By: Seo Master
Powered by Blogger.