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

CORS in the Dropbox API


Dropbox provides the simple storage of files, which may be shared via preview/download links. CORS is supported for direct links in the Dropbox chooser, which allows you to read the file information directly in the browser using client-side JavaScript. Direct links should not be used to display content directly in the browser. Direct links point directly to the contents of the file and are useful for downloading the file itself. Unlike Preview Links, they expire after four hours, so make sure to download the contents of the file immediately after the file is chosen.

Refer to the Dropbox documentation for more information on using chooser: .

Support for simple requests using simple headers via CORS, including support for XdomainRequest, is provided in dropbox.js in the src/util/xhr.coffee file. dropbox.js is the unofficial JavaScript library for the Dropbox core API:

  # Using the header names listed at
  # http://www.w3.org/TR/cors/#simple-response-header
  # and the...