This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
4thefile_api [2010/10/31 15:36] – jay | 4thefile_api [2010/11/08 21:53] (current) – jay | ||
---|---|---|---|
Line 2: | Line 2: | ||
The 4theFile API provides RESTful web services for use in integrating 4theFile with other web-based applications. The API has the following features: | The 4theFile API provides RESTful web services for use in integrating 4theFile with other web-based applications. The API has the following features: | ||
+ | |||
* all communication via HTTP or HTTPS | * all communication via HTTP or HTTPS | ||
* authentication via HTTP Basic auth | * authentication via HTTP Basic auth | ||
Line 9: | Line 10: | ||
* choice of XML or JSON response objects. more representations (e.g. jsonp) may be supported in the future | * choice of XML or JSON response objects. more representations (e.g. jsonp) may be supported in the future | ||
- | ===== Example Usage ===== | + | The [[4thefile_api_reference]] includes documentation and examples of all API resources. |
- | The Problem: | + | ===== Synopsis ===== |
- | You've developed | + | - A 4theFile Collection provides |
+ | - The 4theFile API allows you to integrate | ||
- | The Solution: | + | ===== Example Use Case ===== |
+ | |||
+ | **The Problem:** | ||
+ | |||
+ | You've developed a project management system called XyzProjects.com. It includes an interface for adding notes or uploading attachments for each project. But you've realized that often the content for these notes come in the form of email, and cutting and pasting those emails into your " | ||
+ | |||
+ | **The Solution:** | ||
- Register on 4theFile.com and set up a collection called " | - Register on 4theFile.com and set up a collection called " | ||
- On the detail page for project #235 in your application, | - On the detail page for project #235 in your application, | ||
Line 38: | Line 46: | ||
===== Authentication ===== | ===== Authentication ===== | ||
- | Authentication is performed via Basic authentication, | + | Authentication is performed via "Basic" |
- The HTTP headers are encrypted (this is always true when using SSL/TLS encryption as is the case for https URLs) | - The HTTP headers are encrypted (this is always true when using SSL/TLS encryption as is the case for https URLs) | ||
- The user never needs to share account credentials with a 3rd party service | - The user never needs to share account credentials with a 3rd party service | ||
Line 46: | Line 54: | ||
Q: Why did Twitter decide Basic auth wasn't secure enough? | Q: Why did Twitter decide Basic auth wasn't secure enough? | ||
- | A: The Twitter API was designed to solve a different type of problem than the 4theFile API. Third-party sites that use the Twitter API (such as TwitPic.com, | + | A: The Twitter API was designed to solve a different type of problem than the 4theFile API. Third-party sites that use the Twitter API (such as TwitPic.com, |
+ | |||
+ | The 4theFile API, in contrast, is designed to access data that belongs to the 3rd party site (the "API client" | ||
+ | |||
+ | Undoubtedly there are uses of the 4theFile API we haven' | ||
+ | |||
+ | ===== Use with AJAX ===== | ||
- | The 4theFile API, in contrast, is designed to access data that belongs to the 3rd party site (the "API client"), not data that belongs to that site's users. The API client site has its own 4theFile account and its own credentials, | + | If your web application' |
+ | - your browser probably won't allow it, because you're violating | ||
+ | - you would need to provide | ||
- | Undoubtedly there are uses of the 4theFile API we haven' | + | So, you' |
+ | Note: If you've read this far, you may be familiar with JSONP (an alternate solution to cross-domain ajax problems). We'd probably be willing to support JSONP as an alternative response format in the future if there' | ||