[Tutorialsplanet.NET] Udemy - APIs in PHP from Basic to Advanced
File List
- 08 - API key authentication/002 Add a register page to insert a new user record and generate a new API key.mp4 30.6 MB
- 04 - REST and RESTful APIs using them from PHP/004 Use an SDK compare the Stripe API to its SDK.mp4 29.3 MB
- 10 - Authentication using JSON Web Tokens (JWTs)/004 Add a method to decode the payload from the JWT.mp4 28.3 MB
- 03 - HTTP basics requests, responses and using cURL/002 Response codes get the HTTP status code.mp4 27.8 MB
- 04 - REST and RESTful APIs using them from PHP/003 Use the Guzzle HTTP client for object-oriented API code.mp4 25.5 MB
- 11 - Expiring and refreshing access tokens/012 Add a logout endpoint to remove the an active refresh token from the whitelist.mp4 25.1 MB
- 05 - Create a RESTful API build a framework for serving the API/008 Always return JSON add a generic exception handler and JSON Content-Type header.mp4 25.0 MB
- 09 - An introduction to authentication using access tokens/007 Validate the access token and decode its contents.mp4 24.1 MB
- 03 - HTTP basics requests, responses and using cURL/001 Use cURL instead of file_get_contents to make an API request.mp4 24.1 MB
- 10 - Authentication using JSON Web Tokens (JWTs)/002 Create a class to encode a payload in a JWT.mp4 24.0 MB
- 09 - An introduction to authentication using access tokens/006 Pass the access token to the task API endpoints in the authorization header.mp4 23.8 MB
- 08 - API key authentication/007 Refactor the front controller to a bootstrap file and Auth class.mp4 23.6 MB
- 03 - HTTP basics requests, responses and using cURL/007 Request method change the method to get a different result with the same URL.mp4 23.4 MB
- 11 - Expiring and refreshing access tokens/014 See how a single-page application interacts with the API using access tokens.mp4 23.3 MB
- 03 - HTTP basics requests, responses and using cURL/005 Get all individual response headers in an array.mp4 22.6 MB
- 04 - REST and RESTful APIs using them from PHP/002 Access a RESTful API in PHP with cURL.mp4 22.5 MB
- 07 - Create a RESTful API create, update and delete individual resources/002 Insert a record into the database and respond with a 201 status code.mp4 22.4 MB
- 07 - Create a RESTful API create, update and delete individual resources/007 Update the record in the database and return a 200 status code.mp4 22.4 MB
- 03 - HTTP basics requests, responses and using cURL/003 Request headers add meta data about the request.mp4 22.1 MB
- 08 - API key authentication/011 Restrict the rest of the task endpoints to the authenticated user's tasks.mp4 21.9 MB
- 07 - Create a RESTful API create, update and delete individual resources/001 Get the data from the request as JSON.mp4 21.6 MB
- 03 - HTTP basics requests, responses and using cURL/004 Response headers read meta data about the response.mp4 21.5 MB
- 07 - Create a RESTful API create, update and delete individual resources/004 Validate the data and respond with a 422 status code if invalid.mp4 21.1 MB
- 03 - HTTP basics requests, responses and using cURL/008 Request body add a payload to send data along with the request.mp4 20.9 MB
- 03 - HTTP basics requests, responses and using cURL/006 Use an API that requires a specific request header.mp4 19.9 MB
- 11 - Expiring and refreshing access tokens/011 Validate the refresh token is on the whitelist and return a 400 response if not.mp4 19.8 MB
- 02 - API basics what APIs are and how to use them/003 Decode API results reading JSON in PHP.mp4 19.7 MB
- 07 - Create a RESTful API create, update and delete individual resources/006 Get the data from the request for updating an existing record.mp4 19.7 MB
- 05 - Create a RESTful API build a framework for serving the API/009 Send a 405 status code and Allow header for invalid request methods.mp4 19.3 MB
- 10 - Authentication using JSON Web Tokens (JWTs)/006 Authenticate the task endpoints using the JWT.mp4 19.1 MB
- 07 - Create a RESTful API create, update and delete individual resources/003 Add a generic error handler to output warnings as JSON.mp4 19.0 MB
- 11 - Expiring and refreshing access tokens/013 Add a script to clear out expired refresh tokens from the whitelist.mp4 18.5 MB
- 06 - Create a RESTful API create a database and retrieve data from it/003 Connect to the database from PHP add a Database class.mp4 18.4 MB
- 06 - Create a RESTful API create a database and retrieve data from it/004 Move the database connection data to a separate .env file.mp4 18.3 MB
- 11 - Expiring and refreshing access tokens/005 Add a refresh endpoint and validate the refresh token in the request.mp4 17.9 MB
- 09 - An introduction to authentication using access tokens/008 Get the authenticated user data from the access token.mp4 17.7 MB
- 05 - Create a RESTful API build a framework for serving the API/007 Make debugging easier add type declarations and enable strict type checking.mp4 17.4 MB
- 11 - Expiring and refreshing access tokens/009 Store the refresh token in the whitelist when issued in the login endpoint.mp4 16.9 MB
- 02 - API basics what APIs are and how to use them/001 What is an API.mp4 16.9 MB
- 05 - Create a RESTful API build a framework for serving the API/004 Set the HTTP status code best practices.mp4 16.6 MB
- 04 - REST and RESTful APIs using them from PHP/001 REST and RESTful APIs what are they.mp4 16.4 MB
- 07 - Create a RESTful API create, update and delete individual resources/005 Conditionally validate the data when updating an existing record.mp4 16.2 MB
- 11 - Expiring and refreshing access tokens/006 Validate the user in the refresh token using the database.mp4 16.1 MB
- 05 - Create a RESTful API build a framework for serving the API/005 Add a controller class to decide the response.mp4 16.1 MB
- 06 - Create a RESTful API create a database and retrieve data from it/010 Respond with 404 if the resource with the specified ID is not found.mp4 15.7 MB
- 06 - Create a RESTful API create a database and retrieve data from it/007 Configure PDO to prevent numeric values from being converted to strings.mp4 15.5 MB
- 10 - Authentication using JSON Web Tokens (JWTs)/003 Generate a JWT access token in the login endpoint containing JWT claims.mp4 15.3 MB
- 10 - Authentication using JSON Web Tokens (JWTs)/008 Don't store sensitive data in the JWT.mp4 14.8 MB
- 08 - API key authentication/001 Create a table to store user account data.mp4 14.6 MB
- 08 - API key authentication/003 Send the API key with the request query string or request header.mp4 14.4 MB
- 05 - Create a RESTful API build a framework for serving the API/003 Use a client for API development cURL, Postman or HTTPie.mp4 14.3 MB
- 09 - An introduction to authentication using access tokens/005 Generate an encoded access token containing the user details.mp4 14.3 MB
- 11 - Expiring and refreshing access tokens/010 Replace the refresh token in the whitelist when issued in the refresh endpoint.mp4 13.8 MB
- 02 - API basics what APIs are and how to use them/004 Use API data in a web application.mp4 13.8 MB
- 06 - Create a RESTful API create a database and retrieve data from it/005 Create a table data gateway class for the resource table.mp4 13.7 MB
- 11 - Expiring and refreshing access tokens/007 Issue a new access token and refresh token to the authenticated user.mp4 13.4 MB
- 06 - Create a RESTful API create a database and retrieve data from it/006 Show a list of all records.mp4 13.4 MB
- 11 - Expiring and refreshing access tokens/002 Add an expiry claim to the access token payload when logging in.mp4 13.0 MB
- 11 - Expiring and refreshing access tokens/003 Throw a custom exception to not accept the JWT if it has expired.mp4 12.9 MB
- 06 - Create a RESTful API create a database and retrieve data from it/009 Show an individual record.mp4 12.9 MB
- 01 - Introduction how to use the course and software installation/002 Install a package with a web server, PHP, a database server and phpMyAdmin.mp4 12.6 MB
- 10 - Authentication using JSON Web Tokens (JWTs)/007 Use a custom exception class to return 401 if the signature is invalid.mp4 12.6 MB
- 09 - An introduction to authentication using access tokens/003 Select the user record based on the username in the request.mp4 12.4 MB
- 11 - Expiring and refreshing access tokens/001 Why access tokens need to expire and how to refresh them in a user-friendly way.mp4 12.1 MB
- 08 - API key authentication/010 Restrict the tasks index endpoint to only show the authenticated user's tasks.mp4 12.0 MB
- 10 - Authentication using JSON Web Tokens (JWTs)/001 An introduction to JSON web tokens (JWTs).mp4 11.9 MB
- 09 - An introduction to authentication using access tokens/002 Create the login script and return 400 if the username and password are missing.mp4 11.7 MB
- 08 - API key authentication/005 Create a table data gateway class for the user table.mp4 11.6 MB
- 05 - Create a RESTful API build a framework for serving the API/006 Use Composer's autoloader to load classes automatically.mp4 11.6 MB
- 02 - API basics what APIs are and how to use them/002 Make an API call access an API from PHP.mp4 11.5 MB
- 10 - Authentication using JSON Web Tokens (JWTs)/005 Pass in the secret key used for hashing as a dependency.mp4 11.2 MB
- 01 - Introduction how to use the course and software installation/001 Introduction and welcome how to get the most out of the course.mp4 10.9 MB
- 08 - API key authentication/006 Authenticate the API key and return a 401 status code if invalid.mp4 10.9 MB
- 08 - API key authentication/012 Cache the database connection to avoid multiple connections in the same request.mp4 10.7 MB
- 07 - Create a RESTful API create, update and delete individual resources/008 Delete the record in the database and return a 200 status code.mp4 10.6 MB
- 06 - Create a RESTful API create a database and retrieve data from it/008 Convert database booleans to boolean literals in the JSON.mp4 10.3 MB
- 05 - Create a RESTful API build a framework for serving the API/002 The front controller get the resource, ID and the request method.mp4 10.3 MB
- 08 - API key authentication/009 Retrieve the ID of the authenticated user when authenticating.mp4 10.2 MB
- 12 - Conclusion/001 Conclusion & where to go from here.mp4 9.5 MB
- 09 - An introduction to authentication using access tokens/004 Check the username and password and return a 401 status code if invalid.mp4 9.4 MB
- 11 - Expiring and refreshing access tokens/004 Issue a refresh token in addition to the access token when logging in.mp4 9.2 MB
- 09 - An introduction to authentication using access tokens/001 An introduction to authentication using access tokens.mp4 8.4 MB
- 05 - Create a RESTful API build a framework for serving the API/001 Start writing the API enable URL rewriting.mp4 8.0 MB
- 08 - API key authentication/004 Check the API key is present in the request and return 400 if not.mp4 7.9 MB
- 11 - Expiring and refreshing access tokens/008 Create a table to store a refresh token whitelist.mp4 7.5 MB
- 06 - Create a RESTful API create a database and retrieve data from it/001 Create a new database and a database user to access it.mp4 6.9 MB
- 08 - API key authentication/008 Add a foreign key relationship to link task records to user records.mp4 6.0 MB
- 06 - Create a RESTful API create a database and retrieve data from it/002 Create a table to store resource data.mp4 4.6 MB
- 01 - Introduction how to use the course and software installation/003 Install Composer manage third-party packages and autoload class files.mp4 4.2 MB
- 11 - Expiring and refreshing access tokens/014 Source-code-110-140-See-how-a-single-page-application-interacts-with-the-API-using-access-tokens.zip 15.2 KB
- 11 - Expiring and refreshing access tokens/013 Source-code-110-130-Add-a-script-to-clear-out-expired-refresh-tokens-from-the-whitelist.zip 13.6 KB
- 11 - Expiring and refreshing access tokens/012 Source-code-110-120-Add-a-logout-endpoint-to-remove-the-an-active-refresh-token-from-the-whitelist.zip 13.1 KB
- 11 - Expiring and refreshing access tokens/011 Source-code-110-110-Validate-the-refresh-token-is-on-the-whitelist-and-return-a-400-response-if-not.zip 12.6 KB
- 11 - Expiring and refreshing access tokens/010 Source-code-110-100-Replace-the-refresh-token-in-the-whitelist-when-issued-in-the-refresh-endpoint.zip 12.5 KB
- 11 - Expiring and refreshing access tokens/009 Source-code-110-090-Store-the-refresh-token-in-the-whitelist-when-issued-in-the-login-endpoint.zip 12.4 KB
- 11 - Expiring and refreshing access tokens/007 Source-code-110-070-Issue-a-new-access-token-and-refresh-token-to-the-authenticated-user.zip 11.8 KB
- 11 - Expiring and refreshing access tokens/006 Source-code-110-060-Validate-the-user-in-the-refresh-token-using-the-database.zip 11.6 KB
- 11 - Expiring and refreshing access tokens/005 Source-code-110-050-Add-a-refresh-endpoint-and-validate-the-refresh-token-in-the-request.zip 11.5 KB
- 11 - Expiring and refreshing access tokens/004 Source-code-110-040-Issue-a-refresh-token-in-addition-to-the-access-token-when-logging-in.zip 11.0 KB
- 11 - Expiring and refreshing access tokens/003 Source-code-110-030-Throw-a-custom-exception-to-not-accept-the-JWT-if-it-has-expired.zip 10.9 KB
- 11 - Expiring and refreshing access tokens/002 Source-code-110-020-Add-an-expiry-claim-to-the-access-token-payload-when-logging-in.zip 10.7 KB
- 10 - Authentication using JSON Web Tokens (JWTs)/007 Source-code-100-070-Use-a-custom-exception-class-to-return-401-if-the-signature-is-invalid.zip 10.7 KB
- 10 - Authentication using JSON Web Tokens (JWTs)/006 Source-code-100-060-Authenticate-the-task-endpoints-using-the-JWT.zip 10.4 KB
- 10 - Authentication using JSON Web Tokens (JWTs)/005 Source-code-100-050-Pass-in-the-secret-key-used-for-hashing-as-a-dependency.zip 10.4 KB
- 10 - Authentication using JSON Web Tokens (JWTs)/004 Source-code-100-040-Add-a-method-to-decode-the-payload-from-the-JWT.zip 10.3 KB
- 10 - Authentication using JSON Web Tokens (JWTs)/003 Source-code-100-030-Generate-a-JWT-access-token-in-the-login-endpoint-containing-JWT-claims.zip 10.1 KB
- 10 - Authentication using JSON Web Tokens (JWTs)/002 Source-code-100-020-Create-a-class-to-encode-a-payload-in-a-JWT.zip 10.1 KB
- 09 - An introduction to authentication using access tokens/007 Source-code-090-070-Validate-the-access-token-and-decode-its-contents.zip 9.6 KB
- 09 - An introduction to authentication using access tokens/008 Source-code-090-080-Get-the-authenticated-user-data-from-the-access-token.zip 9.6 KB
- 09 - An introduction to authentication using access tokens/006 Source-code-090-060-Pass-the-access-token-to-the-task-API-endpoints-in-the-authorization-header.zip 9.5 KB
- 09 - An introduction to authentication using access tokens/005 Source-code-090-050-Generate-an-encoded-access-token-containing-the-user-details.zip 9.4 KB
- 09 - An introduction to authentication using access tokens/004 Source-code-090-040-Check-the-username-and-password-and-return-a-401-status-code-if-invalid.zip 9.3 KB
- 09 - An introduction to authentication using access tokens/003 Source-code-090-030-Select-the-user-record-based-on-the-username-in-the-request.zip 9.2 KB
- 08 - API key authentication/012 Source-code-080-120-Cache-the-database-connection-to-avoid-multiple-connections-in-the-same-request.zip 8.7 KB
- 08 - API key authentication/011 Source-code-080-110-Restrict-the-rest-of-the-task-endpoints-to-the-authenticated-users-tasks.zip 8.7 KB
- 08 - API key authentication/010 Source-code-080-100-Restrict-the-tasks-index-endpoint-to-only-show-the-authenticated-users-tasks.zip 8.6 KB
- 08 - API key authentication/009 Source-code-080-090-Retrieve-the-ID-of-the-authenticated-user-when-authenticating.zip 8.6 KB
- 08 - API key authentication/007 Source-code-080-060-Refactor-the-front-controller-to-a-bootstrap-file-and-Auth-class.zip 8.5 KB
- 08 - API key authentication/006 Source-code-080-050-Authenticate-the-API-key-and-return-a-401-status-code-if-invalid.zip 8.0 KB
- 08 - API key authentication/005 Source-code-080-040-Create-a-table-data-gateway-class-for-the-user-table.zip 7.9 KB
- 08 - API key authentication/004 Source-code-080-035-Check-the-API-key-is-present-in-the-request-and-return-400-if-not.zip 7.5 KB
- 08 - API key authentication/003 Source-code-080-030-Send-the-API-key-with-the-request-query-string-or-request-header.zip 7.4 KB
- 08 - API key authentication/002 Source-code-080-020-Add-a-register-page-to-insert-a-new-user-record-and-generate-a-new-API-key.zip 7.4 KB
- 07 - Create a RESTful API create, update and delete individual resources/006 Source-code-070-050-Get-the-data-from-the-request-for-updating-an-existing-record.zip 6.3 KB
- 07 - Create a RESTful API create, update and delete individual resources/003 Source-code-070-025-Add-a-generic-error-handler-to-output-warnings-as-JSON.zip 5.9 KB
- 07 - Create a RESTful API create, update and delete individual resources/001 Source-code-070-010-Get-the-data-from-the-request-as-JSON.zip 5.7 KB
- 10 - Authentication using JSON Web Tokens (JWTs)/004 Add a method to decode the payload from the JWT_en.vtt 5.6 KB
- 08 - API key authentication/002 Add a register page to insert a new user record and generate a new API key_en.vtt 5.6 KB
- 09 - An introduction to authentication using access tokens/007 Validate the access token and decode its contents_en.vtt 5.6 KB
- 06 - Create a RESTful API create a database and retrieve data from it/009 Source-code-060-060-Show-an-individual-record.zip 5.5 KB
- 07 - Create a RESTful API create, update and delete individual resources/007 Update the record in the database and return a 200 status code_en.vtt 5.4 KB
- 09 - An introduction to authentication using access tokens/006 Pass the access token to the task API endpoints in the authorization header_en.vtt 5.4 KB
- 06 - Create a RESTful API create a database and retrieve data from it/008 Source-code-060-057-Convert-database-booleans-to-boolean-literals-in-the-JSON.zip 5.4 KB
- 06 - Create a RESTful API create a database and retrieve data from it/006 Source-code-060-050-Show-a-list-of-all-records.zip 5.3 KB
- 05 - Create a RESTful API build a framework for serving the API/008 Always return JSON add a generic exception handler and JSON Content-Type header_en.vtt 5.2 KB
- 06 - Create a RESTful API create a database and retrieve data from it/005 Source-code-060-040-Create-a-table-data-gateway-class-for-the-resource-table.zip 5.2 KB
- 03 - HTTP basics requests, responses and using cURL/001 Use cURL instead of file_get_contents to make an API request_en.vtt 5.1 KB
- 10 - Authentication using JSON Web Tokens (JWTs)/002 Create a class to encode a payload in a JWT_en.vtt 5.0 KB
- 06 - Create a RESTful API create a database and retrieve data from it/004 Source-code-060-035-Move-the-database-connection-data-to-a-separate-env-file.zip 4.9 KB
- 07 - Create a RESTful API create, update and delete individual resources/001 Get the data from the request as JSON_en.vtt 4.9 KB
- 04 - REST and RESTful APIs using them from PHP/004 Use an SDK compare the Stripe API to its SDK_en.vtt 4.8 KB
- 08 - API key authentication/007 Refactor the front controller to a bootstrap file and Auth class_en.vtt 4.6 KB
- 03 - HTTP basics requests, responses and using cURL/002 Response codes get the HTTP status code_en.vtt 4.6 KB
- 04 - REST and RESTful APIs using them from PHP/003 Use the Guzzle HTTP client for object-oriented API code_en.vtt 4.6 KB
- 07 - Create a RESTful API create, update and delete individual resources/006 Get the data from the request for updating an existing record_en.vtt 4.3 KB
- 07 - Create a RESTful API create, update and delete individual resources/002 Insert a record into the database and respond with a 201 status code_en.vtt 4.3 KB
- 11 - Expiring and refreshing access tokens/012 Add a logout endpoint to remove the an active refresh token from the whitelist_en.vtt 4.3 KB
- 07 - Create a RESTful API create, update and delete individual resources/004 Validate the data and respond with a 422 status code if invalid_en.vtt 4.2 KB
- 05 - Create a RESTful API build a framework for serving the API/005 Add a controller class to decide the response_en.vtt 4.2 KB
- 09 - An introduction to authentication using access tokens/008 Get the authenticated user data from the access token_en.vtt 4.2 KB
- 08 - API key authentication/011 Restrict the rest of the task endpoints to the authenticated user's tasks_en.vtt 4.0 KB
- 06 - Create a RESTful API create a database and retrieve data from it/003 Connect to the database from PHP add a Database class_en.vtt 4.0 KB
- 05 - Create a RESTful API build a framework for serving the API/009 Send a 405 status code and Allow header for invalid request methods_en.vtt 4.0 KB
- 02 - API basics what APIs are and how to use them/001 What is an API_en.vtt 3.9 KB
- 06 - Create a RESTful API create a database and retrieve data from it/010 Respond with 404 if the resource with the specified ID is not found_en.vtt 3.9 KB
- 11 - Expiring and refreshing access tokens/005 Add a refresh endpoint and validate the refresh token in the request_en.vtt 3.8 KB
- 11 - Expiring and refreshing access tokens/013 Add a script to clear out expired refresh tokens from the whitelist_en.vtt 3.8 KB
- 11 - Expiring and refreshing access tokens/009 Store the refresh token in the whitelist when issued in the login endpoint_en.vtt 3.8 KB
- 05 - Create a RESTful API build a framework for serving the API/004 Set the HTTP status code best practices_en.vtt 3.8 KB
- 05 - Create a RESTful API build a framework for serving the API/002 The front controller get the resource, ID and the request method_en.vtt 3.7 KB
- 10 - Authentication using JSON Web Tokens (JWTs)/001 An introduction to JSON web tokens (JWTs)_en.vtt 3.7 KB
- 11 - Expiring and refreshing access tokens/014 See how a single-page application interacts with the API using access tokens_en.vtt 3.7 KB
- 03 - HTTP basics requests, responses and using cURL/005 Get all individual response headers in an array_en.vtt 3.6 KB
- 02 - API basics what APIs are and how to use them/003 Decode API results reading JSON in PHP_en.vtt 3.6 KB
- 10 - Authentication using JSON Web Tokens (JWTs)/006 Authenticate the task endpoints using the JWT_en.vtt 3.6 KB
- 06 - Create a RESTful API create a database and retrieve data from it/005 Create a table data gateway class for the resource table_en.vtt 3.5 KB
- 06 - Create a RESTful API create a database and retrieve data from it/004 Move the database connection data to a separate .env file_en.vtt 3.5 KB
- 04 - REST and RESTful APIs using them from PHP/001 REST and RESTful APIs what are they_en.vtt 3.5 KB
- 08 - API key authentication/001 Create a table to store user account data_en.vtt 3.4 KB
- 03 - HTTP basics requests, responses and using cURL/007 Request method change the method to get a different result with the same URL_en.vtt 3.4 KB
- 11 - Expiring and refreshing access tokens/006 Validate the user in the refresh token using the database_en.vtt 3.3 KB
- 09 - An introduction to authentication using access tokens/005 Generate an encoded access token containing the user details_en.vtt 3.3 KB
- 02 - API basics what APIs are and how to use them/004 Use API data in a web application_en.vtt 3.3 KB
- 11 - Expiring and refreshing access tokens/011 Validate the refresh token is on the whitelist and return a 400 response if not_en.vtt 3.2 KB
- 11 - Expiring and refreshing access tokens/001 Why access tokens need to expire and how to refresh them in a user-friendly way_en.vtt 3.2 KB
- 06 - Create a RESTful API create a database and retrieve data from it/006 Show a list of all records_en.vtt 3.2 KB
- 04 - REST and RESTful APIs using them from PHP/002 Access a RESTful API in PHP with cURL_en.vtt 3.2 KB
- 05 - Create a RESTful API build a framework for serving the API/001 Start writing the API enable URL rewriting_en.vtt 3.1 KB
- 03 - HTTP basics requests, responses and using cURL/003 Request headers add meta data about the request_en.vtt 3.1 KB
- 09 - An introduction to authentication using access tokens/002 Create the login script and return 400 if the username and password are missing_en.vtt 3.1 KB
- 04 - REST and RESTful APIs using them from PHP/003 Source-code-040-030-Use-the-Guzzle-HTTP-client-for-object-oriented-API-code.zip 3.1 KB
- 05 - Create a RESTful API build a framework for serving the API/003 Use a client for API development cURL, Postman or HTTPie_en.vtt 3.1 KB
- 07 - Create a RESTful API create, update and delete individual resources/005 Conditionally validate the data when updating an existing record_en.vtt 3.1 KB
- 03 - HTTP basics requests, responses and using cURL/008 Request body add a payload to send data along with the request_en.vtt 2.9 KB
- 05 - Create a RESTful API build a framework for serving the API/007 Make debugging easier add type declarations and enable strict type checking_en.vtt 2.9 KB
- 07 - Create a RESTful API create, update and delete individual resources/003 Add a generic error handler to output warnings as JSON_en.vtt 2.9 KB
- 11 - Expiring and refreshing access tokens/010 Replace the refresh token in the whitelist when issued in the refresh endpoint_en.vtt 2.8 KB
- 10 - Authentication using JSON Web Tokens (JWTs)/008 Don't store sensitive data in the JWT_en.vtt 2.8 KB
- 03 - HTTP basics requests, responses and using cURL/006 Use an API that requires a specific request header_en.vtt 2.7 KB
- 08 - API key authentication/003 Send the API key with the request query string or request header_en.vtt 2.7 KB
- 09 - An introduction to authentication using access tokens/003 Select the user record based on the username in the request_en.vtt 2.7 KB
- 06 - Create a RESTful API create a database and retrieve data from it/009 Show an individual record_en.vtt 2.6 KB
- 06 - Create a RESTful API create a database and retrieve data from it/007 Configure PDO to prevent numeric values from being converted to strings_en.vtt 2.5 KB
- 09 - An introduction to authentication using access tokens/004 Check the username and password and return a 401 status code if invalid_en.vtt 2.5 KB
- 02 - API basics what APIs are and how to use them/002 Make an API call access an API from PHP_en.vtt 2.5 KB
- 09 - An introduction to authentication using access tokens/001 An introduction to authentication using access tokens_en.vtt 2.5 KB
- 05 - Create a RESTful API build a framework for serving the API/006 Use Composer's autoloader to load classes automatically_en.vtt 2.4 KB
- 11 - Expiring and refreshing access tokens/008 Create a table to store a refresh token whitelist_en.vtt 2.4 KB
- 08 - API key authentication/005 Create a table data gateway class for the user table_en.vtt 2.4 KB
- 08 - API key authentication/010 Restrict the tasks index endpoint to only show the authenticated user's tasks_en.vtt 2.4 KB
- 06 - Create a RESTful API create a database and retrieve data from it/003 Source-code-060-030-Connect-to-the-database-from-PHP-add-a-Database-class.zip 2.4 KB
- 11 - Expiring and refreshing access tokens/003 Throw a custom exception to not accept the JWT if it has expired_en.vtt 2.4 KB
- 10 - Authentication using JSON Web Tokens (JWTs)/007 Use a custom exception class to return 401 if the signature is invalid_en.vtt 2.4 KB
- 06 - Create a RESTful API create a database and retrieve data from it/008 Convert database booleans to boolean literals in the JSON_en.vtt 2.3 KB
- 10 - Authentication using JSON Web Tokens (JWTs)/003 Generate a JWT access token in the login endpoint containing JWT claims_en.vtt 2.3 KB
- 11 - Expiring and refreshing access tokens/002 Add an expiry claim to the access token payload when logging in_en.vtt 2.3 KB
- 11 - Expiring and refreshing access tokens/007 Issue a new access token and refresh token to the authenticated user_en.vtt 2.2 KB
- 03 - HTTP basics requests, responses and using cURL/004 Response headers read meta data about the response_en.vtt 2.2 KB
- 07 - Create a RESTful API create, update and delete individual resources/008 Delete the record in the database and return a 200 status code_en.vtt 2.2 KB
- 06 - Create a RESTful API create a database and retrieve data from it/001 Create a new database and a database user to access it_en.vtt 2.1 KB
- 08 - API key authentication/009 Retrieve the ID of the authenticated user when authenticating_en.vtt 2.0 KB
- 08 - API key authentication/012 Cache the database connection to avoid multiple connections in the same request_en.vtt 2.0 KB
- 11 - Expiring and refreshing access tokens/004 Issue a refresh token in addition to the access token when logging in_en.vtt 2.0 KB
- 08 - API key authentication/006 Authenticate the API key and return a 401 status code if invalid_en.vtt 2.0 KB
- 05 - Create a RESTful API build a framework for serving the API/009 Source-code-050-090-Send-a-405-status-code-and-Allow-header-for-invalid-request-methods.zip 1.9 KB
- 08 - API key authentication/008 Add a foreign key relationship to link task records to user records_en.vtt 1.9 KB
- 03 - HTTP basics requests, responses and using cURL/external-links.txt 1.9 KB
- 10 - Authentication using JSON Web Tokens (JWTs)/005 Pass in the secret key used for hashing as a dependency_en.vtt 1.8 KB
- 08 - API key authentication/004 Check the API key is present in the request and return 400 if not_en.vtt 1.7 KB
- 04 - REST and RESTful APIs using them from PHP/004 Source-code-040-040-Use-an-SDK-compare-the-Stripe-API-to-its-SDK.zip 1.6 KB
- 01 - Introduction how to use the course and software installation/002 Install a package with a web server, PHP, a database server and phpMyAdmin_en.vtt 1.5 KB
- 05 - Create a RESTful API build a framework for serving the API/006 Source-code-050-060-Use-Composers-autoloader-to-load-classes-automatically.zip 1.4 KB
- 01 - Introduction how to use the course and software installation/001 Introduction and welcome how to get the most out of the course_en.vtt 1.4 KB
- 12 - Conclusion/001 Conclusion & where to go from here_en.vtt 1.4 KB
- 06 - Create a RESTful API create a database and retrieve data from it/002 Create a table to store resource data_en.vtt 1.3 KB
- 05 - Create a RESTful API build a framework for serving the API/005 Source-code-050-050-Add-a-controller-class-to-decide-the-response.zip 1.3 KB
- 04 - REST and RESTful APIs using them from PHP/external-links.txt 1.1 KB
- 05 - Create a RESTful API build a framework for serving the API/external-links.txt 1.1 KB
- 01 - Introduction how to use the course and software installation/003 Install Composer manage third-party packages and autoload class files_en.vtt 864 bytes
- 08 - API key authentication/external-links.txt 805 bytes
- 10 - Authentication using JSON Web Tokens (JWTs)/external-links.txt 791 bytes
- 07 - Create a RESTful API create, update and delete individual resources/external-links.txt 781 bytes
- 05 - Create a RESTful API build a framework for serving the API/004 Source-code-050-040-Set-the-HTTP-status-code-best-practices.zip 734 bytes
- 05 - Create a RESTful API build a framework for serving the API/003 Source-code-050-030-Use-a-client-for-API-development-cURL-Postman-or-HTTPie.zip 648 bytes
- 05 - Create a RESTful API build a framework for serving the API/002 Source-code-050-020-The-front-controller-get-the-resource-ID-and-the-request-method.zip 643 bytes
- 03 - HTTP basics requests, responses and using cURL/005 Source-code-030-050-Get-all-individual-response-headers-in-an-array.zip 567 bytes
- 06 - Create a RESTful API create a database and retrieve data from it/external-links.txt 533 bytes
- 05 - Create a RESTful API build a framework for serving the API/001 Source-code-050-010-Start-writing-the-API-enable-URL-rewriting.zip 521 bytes
- 03 - HTTP basics requests, responses and using cURL/008 Source-code-030-080-Request-body-add-a-payload-to-send-data-along-with-the-request.zip 515 bytes
- 03 - HTTP basics requests, responses and using cURL/004 Source-code-030-040-Response-headers-read-meta-data-about-the-response.zip 470 bytes
- 02 - API basics what APIs are and how to use them/004 Source-code-020-040-Use-API-data-in-a-web-application.zip 456 bytes
- 03 - HTTP basics requests, responses and using cURL/006 Source-code-030-060-Use-an-API-that-requires-a-specific-request-header.zip 440 bytes
- 03 - HTTP basics requests, responses and using cURL/007 Source-code-030-070-Request-method-change-the-method-to-get-a-different-result-with-the-same-URL.zip 440 bytes
- 04 - REST and RESTful APIs using them from PHP/002 Source-code-040-020-Access-a-restful-API-in-PHP-with-cURL.zip 435 bytes
- 03 - HTTP basics requests, responses and using cURL/003 Source-code-030-030-Request-headers-add-meta-data-about-the-request.zip 411 bytes
- 03 - HTTP basics requests, responses and using cURL/002 Source-code-030-020-Response-codes-get-the-HTTP-status-code.zip 385 bytes
- 02 - API basics what APIs are and how to use them/external-links.txt 341 bytes
- 03 - HTTP basics requests, responses and using cURL/001 Source-code-030-010-Use-cURL-instead-of-file-get-contents-to-make-an-API-request.zip 330 bytes
- 06 - Create a RESTful API create a database and retrieve data from it/002 Source-code-060-020-Create-a-table-to-store-resource-data.zip 329 bytes
- 08 - API key authentication/001 Source-code-080-010-Create-a-table-to-store-user-account-data.zip 326 bytes
- 11 - Expiring and refreshing access tokens/008 Source-code-110-080-Create-a-table-to-store-a-refresh-token-whitelist.zip 302 bytes
- 08 - API key authentication/008 Source-code-080-080-Add-a-foreign-key-relationship-to-link-task-records-to-user-records.zip 295 bytes
- 09 - An introduction to authentication using access tokens/external-links.txt 290 bytes
- 06 - Create a RESTful API create a database and retrieve data from it/001 Source-code-060-010-Create-a-new-database-and-a-database-user-to-access-it.zip 280 bytes
- 02 - API basics what APIs are and how to use them/003 Source-code-020-030-Decode-API-results-reading-JSON-in-PHP.zip 279 bytes
- 02 - API basics what APIs are and how to use them/002 Source-code-020-020-Make-an-API-call-access-an-API-from-PHP.zip 230 bytes
- 01 - Introduction how to use the course and software installation/external-links.txt 165 bytes
- 11 - Expiring and refreshing access tokens/external-links.txt 163 bytes
- 03 - HTTP basics requests, responses and using cURL/007 GitHub-activity-starring-a-repository.url 133 bytes
- 0. Websites you may like/[Tutorialsplanet.NET].url 128 bytes
- 01 - Introduction how to use the course and software installation/[Tutorialsplanet.NET].url 128 bytes
- 05 - Create a RESTful API build a framework for serving the API/[Tutorialsplanet.NET].url 128 bytes
- 09 - An introduction to authentication using access tokens/[Tutorialsplanet.NET].url 128 bytes
- 12 - Conclusion/[Tutorialsplanet.NET].url 128 bytes
- [Tutorialsplanet.NET].url 128 bytes
- 06 - Create a RESTful API create a database and retrieve data from it/003 PHP-constructor-promotion.url 119 bytes
- 03 - HTTP basics requests, responses and using cURL/008 GitHub-API-creating-a-repository.url 118 bytes
- 03 - HTTP basics requests, responses and using cURL/006 GitHub-resources-in-the-REST-API.url 110 bytes
- 03 - HTTP basics requests, responses and using cURL/001 PHP-configuration-setting-allow-url-fopen.url 102 bytes
- 05 - Create a RESTful API build a framework for serving the API/007 PHP-configuration-setting-display-errors.url 100 bytes
- 03 - HTTP basics requests, responses and using cURL/007 HTTP-request-methods.url 97 bytes
- 03 - HTTP basics requests, responses and using cURL/004 List-of-HTTP-header-fields.url 96 bytes
- 03 - HTTP basics requests, responses and using cURL/003 List-of-HTTP-header-fields.url 95 bytes
- 04 - REST and RESTful APIs using them from PHP/001 The-REST-architectural-style.url 95 bytes
- 09 - An introduction to authentication using access tokens/006 HTTP-Authorization-header.url 95 bytes
- 08 - API key authentication/003 API-key.url 91 bytes
- 08 - API key authentication/001 GitHub-REST-API-resources.url 90 bytes
- 07 - Create a RESTful API create, update and delete individual resources/001 PHP-input-stream-wrappers.url 89 bytes
- 09 - An introduction to authentication using access tokens/006 PHP-apache-request-headers.url 89 bytes
- 05 - Create a RESTful API build a framework for serving the API/006 PHP-spl-autoload-register.url 88 bytes
- 05 - Create a RESTful API build a framework for serving the API/008 PHP-set-exception-handler.url 88 bytes
- 07 - Create a RESTful API create, update and delete individual resources/003 PHP-set-exception-handler.url 88 bytes
- 05 - Create a RESTful API build a framework for serving the API/009 HTTP-Allow-header.url 87 bytes
- 03 - HTTP basics requests, responses and using cURL/007 The-HTML-form-element.url 86 bytes
- 04 - REST and RESTful APIs using them from PHP/001 REpresentational-State-Transfer.url 85 bytes
- 05 - Create a RESTful API build a framework for serving the API/004 PHP-http-response-code.url 85 bytes
- 05 - Create a RESTful API build a framework for serving the API/007 PHP-Type-declarations.url 85 bytes
- 02 - API basics what APIs are and how to use them/002 PHP-file-get-contents.url 84 bytes
- 03 - HTTP basics requests, responses and using cURL/001 PHP-file-get-contents.url 84 bytes
- 04 - REST and RESTful APIs using them from PHP/003 PHP-file-get-contents.url 84 bytes
- 05 - Create a RESTful API build a framework for serving the API/009 405-status-code-Method-not-allowed.url 84 bytes
- 07 - Create a RESTful API create, update and delete individual resources/002 HTTP-201-Created-status-code.url 84 bytes
- 07 - Create a RESTful API create, update and delete individual resources/004 HTTP-status-code-422-unprocessable-entity.url 84 bytes
- 08 - API key authentication/004 HTTP-status-code-400-Bad-request.url 84 bytes
- 08 - API key authentication/006 HTTP-status-code-401-Unauthorized.url 84 bytes
- 10 - Authentication using JSON Web Tokens (JWTs)/007 HTTP-status-code-401-Unauthorized.url 84 bytes
- 03 - HTTP basics requests, responses and using cURL/006 GitHub-API-reference-starring-a-repository.url 83 bytes
- 04 - REST and RESTful APIs using them from PHP/004 PHP-http-build-query.url 83 bytes
- 08 - API key authentication/003 PHP-SERVER.url 83 bytes
- 11 - Expiring and refreshing access tokens/002 The-exp-Expiration-Time-Claim.url 83 bytes
- 05 - Create a RESTful API build a framework for serving the API/006 Autoloading-with-Composer.url 81 bytes
- 07 - Create a RESTful API create, update and delete individual resources/001 PHP-POST.url 81 bytes
- 10 - Authentication using JSON Web Tokens (JWTs)/002 HMAC-with-SHA-2-Functions.url 81 bytes
- 10 - Authentication using JSON Web Tokens (JWTs)/002 base64-URL-encoding.url 81 bytes
- 03 - HTTP basics requests, responses and using cURL/003 Unsplash-API-documentation-public-authentication.url 80 bytes
- 08 - API key authentication/001 PHP-password-hash.url 80 bytes
- 09 - An introduction to authentication using access tokens/005 PHP-base64-encode.url 80 bytes
- 03 - HTTP basics requests, responses and using cURL/002 List-of-HTTP-status-codes.url 79 bytes
- 03 - HTTP basics requests, responses and using cURL/004 PHP-curl-getinfo.url 79 bytes
- 04 - REST and RESTful APIs using them from PHP/004 Stripe-API-libraries.url 79 bytes
- 08 - API key authentication/002 PHP-random-bytes.url 79 bytes
- 10 - Authentication using JSON Web Tokens (JWTs)/002 Search-256-bit-key-generator.url 79 bytes
- 02 - API basics what APIs are and how to use them/003 PHP-json-decode.url 78 bytes
- 03 - HTTP basics requests, responses and using cURL/005 PHP-curl-setopt.url 78 bytes
- 07 - Create a RESTful API create, update and delete individual resources/003 PHP-ErrorException-class.url 78 bytes
- 10 - Authentication using JSON Web Tokens (JWTs)/004 PHP-hash-equals.url 78 bytes
- 06 - Create a RESTful API create a database and retrieve data from it/009 PDOStatement-fetch.url 76 bytes
- 10 - Authentication using JSON Web Tokens (JWTs)/002 PHP-hash-hmac.url 76 bytes
- 10 - Authentication using JSON Web Tokens (JWTs)/008 Search-base64-URL-decoder.url 75 bytes
- 06 - Create a RESTful API create a database and retrieve data from it/007 PDO-setAttribute.url 74 bytes
- 08 - API key authentication/002 PHP-bin2hex.url 74 bytes
- 05 - Create a RESTful API build a framework for serving the API/004 PHP-header.url 73 bytes
- 05 - Create a RESTful API build a framework for serving the API/008 PHP-Throwable-class.url 73 bytes
- 04 - REST and RESTful APIs using them from PHP/002 GitHub-API-gists.url 71 bytes
- 11 - Expiring and refreshing access tokens/002 PHP-time.url 71 bytes
- 04 - REST and RESTful APIs using them from PHP/004 Stripe-API-reference.url 70 bytes
- 10 - Authentication using JSON Web Tokens (JWTs)/003 JSON-Web-Token-claims.url 70 bytes
- 07 - Create a RESTful API create, update and delete individual resources/003 PHP-Error-class.url 69 bytes
- 03 - HTTP basics requests, responses and using cURL/001 PHP-cURL.url 67 bytes
- 04 - REST and RESTful APIs using them from PHP/003 PHP-cURL.url 67 bytes
- 04 - REST and RESTful APIs using them from PHP/004 PHP-SDK-search.url 65 bytes
- 01 - Introduction how to use the course and software installation/002 XAMPP-Installers-and-Downloads.url 64 bytes
- 07 - Create a RESTful API create, update and delete individual resources/001 HTTPie-default-behaviour.url 64 bytes
- 12 - Conclusion/001 PHP-Manual.url 63 bytes
- 04 - REST and RESTful APIs using them from PHP/003 Guzzle-documentation.url 61 bytes
- 07 - Create a RESTful API create, update and delete individual resources/001 HTTPie-request-items.url 60 bytes
- 04 - REST and RESTful APIs using them from PHP/004 Amazon-PHP-SDK.url 59 bytes
- 06 - Create a RESTful API create a database and retrieve data from it/004 Packagist-dotenv-packages.url 59 bytes
- 10 - Authentication using JSON Web Tokens (JWTs)/002 PHP-JWT-package.url 59 bytes
- 12 - Conclusion/external-links.txt 59 bytes
- 03 - HTTP basics requests, responses and using cURL/006 GitHub-access-tokens.url 58 bytes
- 06 - Create a RESTful API create a database and retrieve data from it/008 BOOLEAN-values-in-MySQL-MariaDB.url 58 bytes
- 06 - Create a RESTful API create a database and retrieve data from it/007 JSON.org.url 57 bytes
- 06 - Create a RESTful API create a database and retrieve data from it/008 JSON.org.url 57 bytes
- 03 - HTTP basics requests, responses and using cURL/006 HTTPie-GitHub-repository.url 56 bytes
- 03 - HTTP basics requests, responses and using cURL/007 HTTPie-GitHub-repository.url 56 bytes
- 03 - HTTP basics requests, responses and using cURL/002 OpenWeather-API.url 54 bytes
- 01 - Introduction how to use the course and software installation/002 MAMP.url 53 bytes
- 04 - REST and RESTful APIs using them from PHP/004 Stripe-dashboard.url 53 bytes
- 04 - REST and RESTful APIs using them from PHP/003 Guzzle-PHP-HTTP-client.url 51 bytes
- 04 - REST and RESTful APIs using them from PHP/004 Guzzle-PHP-HTTP-client.url 51 bytes
- 01 - Introduction how to use the course and software installation/003 Composer.url 48 bytes
- 05 - Create a RESTful API build a framework for serving the API/003 Postman-API-platform.url 48 bytes
- 02 - API basics what APIs are and how to use them/001 Random-User-Generator.url 46 bytes
- 03 - HTTP basics requests, responses and using cURL/002 GitHub-404-page.url 46 bytes
- 08 - API key authentication/001 Random-User-Generator.url 46 bytes
- 02 - API basics what APIs are and how to use them/003 JSON.org.url 45 bytes
- 03 - HTTP basics requests, responses and using cURL/003 Unsplash.url 45 bytes
- 02 - API basics what APIs are and how to use them/002 Example-domain.url 44 bytes
- 08 - API key authentication/002 Pico-CSS-framework.url 44 bytes
- 04 - REST and RESTful APIs using them from PHP/004 Stripe-payment-gateway.url 43 bytes
- 05 - Create a RESTful API build a framework for serving the API/003 HTTPie-API-testing-client.url 42 bytes
- 02 - API basics what APIs are and how to use them/004 Agify.io.url 41 bytes
- 03 - HTTP basics requests, responses and using cURL/001 cURL.url 40 bytes
- 05 - Create a RESTful API build a framework for serving the API/003 cURL.url 40 bytes
- 10 - Authentication using JSON Web Tokens (JWTs)/001 JSON-Web-Tokens.url 39 bytes
- 05 - Create a RESTful API build a framework for serving the API/007 Source-code-050-070-Make-debugging-easier-add-type-declarations-and-enable-strict-type-checking.zip 0 bytes
- 05 - Create a RESTful API build a framework for serving the API/008 Source-code-050-080-Always-return-JSON-add-a-generic-exception-handler-and-JSON-Content-Type-header.zip 0 bytes
- 06 - Create a RESTful API create a database and retrieve data from it/007 Source-code-060-055-Configure-PDO-to-prevent-numeric-values-from-being-converted-to-strings.zip 0 bytes
- 06 - Create a RESTful API create a database and retrieve data from it/010 Source-code-060-070-Respond-with-404-if-the-resource-with-the-specified-ID-is-not-found.zip 0 bytes
- 07 - Create a RESTful API create, update and delete individual resources/002 Source-code-070-020-Insert-a-record-into-the-database-and-respond-with-a-201-status-code.zip 0 bytes
- 07 - Create a RESTful API create, update and delete individual resources/004 Source-code-070-030-Validate-the-data-and-respond-with-a-422-status-code-if-invalid.zip 0 bytes
- 07 - Create a RESTful API create, update and delete individual resources/005 Source-code-070-040-Conditionally-validate-the-data-when-updating-an-existing-record.zip 0 bytes
- 07 - Create a RESTful API create, update and delete individual resources/007 Source-code-070-060-Update-the-record-in-the-database-and-return-a-200-status-code.zip 0 bytes
- 07 - Create a RESTful API create, update and delete individual resources/008 Source-code-070-070-Delete-the-record-in-the-database-and-return-a-200-status-code.zip 0 bytes
- 09 - An introduction to authentication using access tokens/002 Source-code-090-020-Create-the-login-script-and-return-400-if-the-username-and-password-are-missing.zip 0 bytes
Download Torrent
Related Resources
Copyright Infringement
If the content above is not authorized, please contact us via anywarmservice[AT]gmail.com. Remember to include the full url in your complaint.