|
|
(46 intermediate revisions by 4 users not shown) |
Line 1: |
Line 1: |
− | This section consists of short, example-based tutorials for the most common DreamFactory use cases. | + | This section consists of short, example-based tutorials for the most common DreamFactory use cases. |
| | | |
− | Topics in this section include:
| + | * [[DreamFactory/Tutorials/cURL_Examples | cURL Examples]] |
− | | + | * [[DreamFactory/Tutorials/Example_Applications | Example Applications]] |
− | ## Setting up API Services
| + | * [[DreamFactory/Tutorials/Authentication_and_Authorization | Authentication and Authorization]] |
− | | + | * [[DreamFactory/Tutorials/Connecting_to_Data_Sources | Connecting to Data Sources]] |
− | * [[Media:service_matrix_pub.pdf | Database and server side scripting support by host type]]
| + | * [[DreamFactory/Tutorials/Using_the_REST_API | Using the REST API]] |
− | * [[DreamFactory/Tutorials/Connecting_to_SQL | Connecting to SQL]] | + | * [[DreamFactory/Tutorials/Server_Side_Scripting | Server-Side Scripting]] |
− | * [[DreamFactory/Tutorials/Connecting_To_NoSQL | Connecting to NoSQL]] | + | * [[DreamFactory/Tutorials/Packaging | App Deployment]] |
− | * [[DreamFactory/Tutorials/Connecting_to_File_Storage | Connecting to File Storage]] | + | * [[DreamFactory/Tutorials/Configuration | Configuration]] |
− | * [[DreamFactory/Tutorials/Connecting_to_Email_Services | Connecting to Email Services]] | + | |
− | * [[DreamFactory/Tutorials/Connecting_to_Push_Notification_Services | Connecting to Push Notification Services]] | + | |
− | * [[DreamFactory/Tutorials/Connecting_to_Remote_Web_Services | Connecting to Remote Web Services]]
| + | |
− | | + | |
− | | + | |
− | ## Using the REST API
| + | |
− | | + | |
− | ### Upgrading your app
| + | |
− | * [[DreamFactory/Tutorials/Upgrading_Your_App|Upgrading your app from 1.x]]
| + | |
− | | + | |
− | ### Users
| + | |
− | * [[DreamFactory/Tutorials/Creating users|Creating users]] | + | |
− | * [[DreamFactory/Tutorials/Logging in|Logging in]]
| + | |
− | * [[DreamFactory/Tutorials/Logging out|Logging out]]
| + | |
− | * [[DreamFactory/Tutorials/Open Registration|Open registration]]
| + | |
− | * [[DreamFactory/Tutorials/Confirming New User|Confirming New User]]
| + | |
− | * [[DreamFactory/Tutorials/Setting_up_guest_access | Setting up guest access]]
| + | |
− | * [[DreamFactory/Tutorials/Basic Auth|Basic auth]]
| + | |
− | * [[DreamFactory/Tutorials/Access Using API Key|Access using API key]]
| + | |
− | * [[DreamFactory/Tutorials/Access Using JWT|Access using JWT]]
| + | |
− | * [[DreamFactory/Tutorials/Access Using JWT and API Key|Access using JWT and API key]]
| + | |
− | * [[DreamFactory/Tutorials/Refreshing a JWT|Refreshing a JWT]]
| + | |
− | * [[DreamFactory/Tutorials/Forever_sessions|Forever sessions]]
| + | |
− | * [[DreamFactory/Tutorials/Using Forever Session|Using Forever Session]]
| + | |
− | | + | |
− | ### SQL and NoSQL Data
| + | |
− | | + | |
− | * [[DreamFactory/Tutorials/Querying records with logical filters|Querying records with logical filters]]
| + | |
− | * [[DreamFactory/Tutorials/Querying records with an ID list|Querying records with an ID list]]
| + | |
− | * [[DreamFactory/Tutorials/Querying for a single record by ID|Querying for a single record by ID]]
| + | |
− | * [[DreamFactory/Tutorials/Querying records in a date range|Querying records in a date range]]
| + | |
− | * [[DreamFactory/Tutorials/Specifying fields|Specifying fields]]
| + | |
− | * [[DreamFactory/Tutorials/Sorting records|Sorting records]]
| + | |
− | * [[DreamFactory/Tutorials/Paginating with limits and offsets|Paginating records with limits and offsets]]
| + | |
− | * [[DreamFactory/Tutorials/Posting records|Posting records]]
| + | |
− | * [[DreamFactory/Tutorials/Updating records|Updating records]]
| + | |
− | * [[DreamFactory/Tutorials/Deleting records|Deleting records]]
| + | |
− | | + | |
− | ### SQL-Specific Data
| + | |
− | | + | |
− | * [[DreamFactory/Tutorials/Querying multiple tables with joins|Querying multiple tables with joins]]
| + | |
− | * [[DreamFactory/Tutorials/Posting data to multiple tables with joins|Posting data to multiple tables with joins]]
| + | |
− | * [[DreamFactory/Tutorials/Querying SQL views|Querying SQL views]]
| + | |
− | * [[DreamFactory/Tutorials/Querying stored procedures|Calling stored procedures]]
| + | |
− | * [[DreamFactory/Tutorials/Calling SQL functions|Calling SQL functions]]
| + | |
− | | + | |
− | ### Files
| + | |
− | | + | |
− | * [[DreamFactory/Tutorials/Uploading File|Uploading File]]
| + | |
− | * [[DreamFactory/Tutorials/Downloading File|Downloading File]]
| + | |
− | * [[DreamFactory/Tutorials/Deleting File|Deleting File]]
| + | |
− | * [[DreamFactory/Tutorials/Adding a text file|Adding a text file]]
| + | |
− | | + | |
− | ### Email
| + | |
− | * [[DreamFactory/Tutorials/Sending Email|Sending Email]]
| + | |
− | | + | |
− | ### Push Notifications
| + | |
− | * [[DreamFactory/Tutorials/Sending_Push_Notifications|Sending Push Notifications]]
| + | |
− | | + | |
− | ### Remote Web Services
| + | |
− | * [[DreamFactory/Tutorials/Edmunds_API|Edmunds API]]
| + | |
− | * [[DreamFactory/Tutorials/Rotten_Tomatoes_API|Rotten Tomatoes API]]
| + | |
− | | + | |
− | ## Scripting
| + | |
− | | + | |
− | ### V8 Javascript
| + | |
− | | + | |
− | * [[DreamFactory/Tutorials/V8_field_validation|Field validation example]]
| + | |
− | * [[DreamFactory/Tutorials/V8_push_notification|Push notification workflow rule example]] | + | |
− | * [[DreamFactory/Tutorials/V8_custom_scripting_service|Custom scripting service example]] | + | |
− | | + | |
− | ### Node.js
| + | |
− | | + | |
− | * [Field validation example]()
| + | |
− | * [Push notification workflow rule example]()
| + | |
− | * [Custom scripting service example]()
| + | |
− | | + | |
− | ### PHP
| + | |
− | | + | |
− | * [[DreamFactory/Tutorials/PHP Field validation example|Field validation example]]
| + | |
− | * [[DreamFactory/Tutorials/PHP Push notification workflow rule example|Push notification workflow rule example]]
| + | |
− | * [[DreamFactory/Tutorials/Custom scripting service example|Custom scripting service example]]
| + | |
− | | + | |
− | ## User Management & Security Settings
| + | |
− | | + | |
− | ### Role-Based Access Control
| + | |
− | | + | |
− | * [[DreamFactory/Tutorials/Setting up user roles|Setting up user roles]]
| + | |
− | * [[DreamFactory/Tutorials/Setting up application default role|Setting up application default role]]
| + | |
− | * [[DreamFactory/Tutorials/Accessing SQL tables|Accessing SQL tables]]
| + | |
− | * [[DreamFactory/Tutorials/Accessing NoSQL collections|Accessing NoSQL collections]]
| + | |
− | * [[DreamFactory/Tutorials/Record-level access control|Record-level access control with server-side filters]]
| + | |
− | * [[DreamFactory/Tutorials/Accessing documents|Accessing documents]]
| + | |
− | * [[DreamFactory/Tutorials/Accessing email services|Accessing email services]]
| + | |
− | * [[DreamFactory/Tutorials/Accessing push notifications|Accessing push notifications]]
| + | |
− | * [[DreamFactory/Tutorials/Accessing remote web services|Accessing remote web services]]
| + | |
− | * [[DreamFactory/Tutorials/Enabling script access|Enabling script access]]
| + | |
− | * [Using role lookup keys]()
| + | |
− | | + | |
− | ### Single Sign On
| + | |
− | | + | |
− | * [[DreamFactory/Tutorials/Using LDAP|Using LDAP]]
| + | |
− | * [[DreamFactory/Tutorials/Using Active Directory|Using Active Directory]]
| + | |
− | * [[DreamFactory/Tutorials/Using OAuth|Using OAuth]]
| + | |
− | | + | |
− | ### Active Directory
| + | |
− | * [[DreamFactory/Tutorials/Importing Groups as Roles|Importing Groups as Roles]]
| + | |
− | * [[DreamFactory/Tutorials/Mapping Roles to AD Groups|Mapping Roles to AD Groups]]
| + | |
− | * [[DreamFactory/Tutorials/Retrieving AD Groups|Retrieving AD Groups]]
| + | |
− | * [[DreamFactory/Tutorials/Retrieving AD Users|Retrieving AD Users]]
| + | |
− | | + | |
− | ## Configuration Settings
| + | |
− | | + | |
− | * [[DreamFactory/Tutorials/Clearing the System cache|Clearing the System cache]]
| + | |
− | * [[DreamFactory/Tutorials/Enabling CORS Access|Enabling CORS Access]]
| + | |
− | * [[DreamFactory/Tutorials/Setting up email templates|Setting up email templates]]
| + | |
− | * [[DreamFactory/Tutorials/Setting up lookup keys|Setting up lookup keys]]
| + | |