Book Image

CORS Essentials

By : Rajesh Gunasundaram
Book Image

CORS Essentials

By: Rajesh Gunasundaram

Overview of this book

This book explains how to use CORS, including specific implementations for platforms such as Drupal, WordPress, IIS Server, ASP.NET, JBoss, Windows Azure, and Salesforce, as well as how to use CORS in the Cloud on Amazon AWS, YouTube, Mulesoft, and others. It examines limitations, security risks, and alternatives to CORS. It explores the W3C Specification and major developer documentation sources about CORS. It attempts to predict what kinds of extension to the CORS specification, or completely new techniques, will come in the future to address the limitations of CORS Web developers will learn how to share code and assets across domains with CORS. They will learn a variety of techniques that are rather similar in their method and syntax. The book is organized by similar types of framework and application, so it can be used as a reference. Developers will learn about special cases, such as when a proxy is necessary. And they will learn about some alternative techniques that achieve similar goals, and when they may be preferable to using CORS
Table of Contents (15 chapters)
CORS Essentials
Credits
About the Authors
www.PacktPub.com
Customer Feedback
Preface
Index

Authenticated access to Google APIs with CORS


Google APIs allow communication with Google Services, such as Drive, Search, Gmail, Translate, Google Maps, YouTube, and many others. You can leverage these APIs in a third-party application to take advantage of or extend the functionality of the existing Google Services.

The Google API Client library for JavaScript makes it easier for you to write JavaScript that works with Google Services.

Note

Google APIs support Cross-Origin Resource Sharing (CORS).

If you want your application to access a Google Service user's personal information, OAuth 2.0 provides authenticated access to the user's information.

For more information about the Google API Client Library for JavaScript see: .

OAuth and CORS are implemented via the Google API Client Library for JavaScript. Google also provides a standalone JavaScript auth client, which can be used without loading the entire JS library.

Google API Keys

Google defines two levels of API access:

  • Simple API calls that do...