zhongziso种子搜
首页
功能
磁力转BT
BT转磁力
使用教程
免责声明
关于
zhongziso
搜索
[ FreeCourseWeb.com ] Udemy - APIs in PHP - from Basic to Advanced
magnet:?xt=urn:btih:fba62568d96c5e07ac9e73f7045721f014f07dc1&dn=[ FreeCourseWeb.com ] Udemy - APIs in PHP - from Basic to Advanced
磁力链接详情
Hash值:
fba62568d96c5e07ac9e73f7045721f014f07dc1
点击数:
181
文件大小:
1.38 GB
文件数量:
89
创建日期:
2022-3-9 04:26
最后访问:
2024-12-24 11:59
访问标签:
FreeCourseWeb
com
Udemy
-
APIs
in
PHP
-
from
Basic
to
Advanced
文件列表详情
~Get Your Files Here !/1. Introduction how to use the course and software installation/1. Introduction and welcome how to get the most out of the course.mp4 10.88 MB
~Get Your Files Here !/1. Introduction how to use the course and software installation/2. Install a package with a web server, PHP, a database server and phpMyAdmin.mp4 12.61 MB
~Get Your Files Here !/1. Introduction how to use the course and software installation/3. Install Composer manage third-party packages and autoload class files.mp4 4.15 MB
~Get Your Files Here !/10. Authentication using JSON Web Tokens (JWTs)/1. An introduction to JSON web tokens (JWTs).mp4 11.93 MB
~Get Your Files Here !/10. Authentication using JSON Web Tokens (JWTs)/2. Create a class to encode a payload in a JWT.mp4 10.08 MB
~Get Your Files Here !/10. Authentication using JSON Web Tokens (JWTs)/3. Generate a JWT access token in the login endpoint containing JWT claims.mp4 15.26 MB
~Get Your Files Here !/10. Authentication using JSON Web Tokens (JWTs)/4. Add a method to decode the payload from the JWT.mp4 28.34 MB
~Get Your Files Here !/10. Authentication using JSON Web Tokens (JWTs)/5. Pass in the secret key used for hashing as a dependency.mp4 11.24 MB
~Get Your Files Here !/10. Authentication using JSON Web Tokens (JWTs)/6. Authenticate the task endpoints using the JWT.mp4 19.06 MB
~Get Your Files Here !/10. Authentication using JSON Web Tokens (JWTs)/7. Use a custom exception class to return 401 if the signature is invalid.mp4 12.56 MB
~Get Your Files Here !/10. Authentication using JSON Web Tokens (JWTs)/8. Don't store sensitive data in the JWT.mp4 14.79 MB
~Get Your Files Here !/11. Expiring and refreshing access tokens/1. Why access tokens need to expire and how to refresh them in a user-friendly way.mp4 12.11 MB
~Get Your Files Here !/11. Expiring and refreshing access tokens/10. Replace the refresh token in the whitelist when issued in the refresh endpoint.mp4 13.82 MB
~Get Your Files Here !/11. Expiring and refreshing access tokens/11. Validate the refresh token is on the whitelist and return a 400 response if not.mp4 19.75 MB
~Get Your Files Here !/11. Expiring and refreshing access tokens/12. Add a logout endpoint to remove the an active refresh token from the whitelist.mp4 25.13 MB
~Get Your Files Here !/11. Expiring and refreshing access tokens/13. Add a script to clear out expired refresh tokens from the whitelist.mp4 18.48 MB
~Get Your Files Here !/11. Expiring and refreshing access tokens/14. See how a single-page application interacts with the API using access tokens.mp4 23.26 MB
~Get Your Files Here !/11. Expiring and refreshing access tokens/2. Add an expiry claim to the access token payload when logging in.mp4 12.99 MB
~Get Your Files Here !/11. Expiring and refreshing access tokens/3. Throw a custom exception to not accept the JWT if it has expired.mp4 12.91 MB
~Get Your Files Here !/11. Expiring and refreshing access tokens/4. Issue a refresh token in addition to the access token when logging in.mp4 9.17 MB
~Get Your Files Here !/11. Expiring and refreshing access tokens/5. Add a refresh endpoint and validate the refresh token in the request.mp4 17.86 MB
~Get Your Files Here !/11. Expiring and refreshing access tokens/6. Validate the user in the refresh token using the database.mp4 16.11 MB
~Get Your Files Here !/11. Expiring and refreshing access tokens/7. Issue a new access token and refresh token to the authenticated user.mp4 13.4 MB
~Get Your Files Here !/11. Expiring and refreshing access tokens/8. Create a table to store a refresh token whitelist.mp4 7.54 MB
~Get Your Files Here !/11. Expiring and refreshing access tokens/9. Store the refresh token in the whitelist when issued in the login endpoint.mp4 16.9 MB
~Get Your Files Here !/12. Conclusion/1. Conclusion & where to go from here.mp4 9.54 MB
~Get Your Files Here !/2. API basics what APIs are and how to use them/1. What is an API.mp4 16.85 MB
~Get Your Files Here !/2. API basics what APIs are and how to use them/2. Make an API call access an API from PHP.mp4 6.15 MB
~Get Your Files Here !/2. API basics what APIs are and how to use them/3. Decode API results reading JSON in PHP.mp4 19.73 MB
~Get Your Files Here !/2. API basics what APIs are and how to use them/4. Use API data in a web application.mp4 13.76 MB
~Get Your Files Here !/3. HTTP basics requests, responses and using cURL/1. Use cURL instead of file_get_contents to make an API request.mp4 24.07 MB
~Get Your Files Here !/3. HTTP basics requests, responses and using cURL/2. Response codes get the HTTP status code.mp4 27.83 MB
~Get Your Files Here !/3. HTTP basics requests, responses and using cURL/3. Request headers add meta data about the request.mp4 22.12 MB
~Get Your Files Here !/3. HTTP basics requests, responses and using cURL/4. Response headers read meta data about the response.mp4 21.48 MB
~Get Your Files Here !/3. HTTP basics requests, responses and using cURL/5. Get all individual response headers in an array.mp4 22.58 MB
~Get Your Files Here !/3. HTTP basics requests, responses and using cURL/6. Use an API that requires a specific request header.mp4 19.92 MB
~Get Your Files Here !/3. HTTP basics requests, responses and using cURL/7. Request method change the method to get a different result with the same URL.mp4 23.42 MB
~Get Your Files Here !/3. HTTP basics requests, responses and using cURL/8. Request body add a payload to send data along with the request.mp4 20.92 MB
~Get Your Files Here !/4. REST and RESTful APIs using them from PHP/1. REST and RESTful APIs what are they.mp4 16.37 MB
~Get Your Files Here !/4. REST and RESTful APIs using them from PHP/2. Access a RESTful API in PHP with cURL.mp4 22.54 MB
~Get Your Files Here !/4. REST and RESTful APIs using them from PHP/3. Use the Guzzle HTTP client for object-oriented API code.mp4 25.46 MB
~Get Your Files Here !/4. REST and RESTful APIs using them from PHP/4. Use an SDK compare the Stripe API to its SDK.mp4 29.27 MB
~Get Your Files Here !/5. Create a RESTful API build a framework for serving the API/1. Start writing the API enable URL rewriting.mp4 7.97 MB
~Get Your Files Here !/5. Create a RESTful API build a framework for serving the API/2. The front controller get the resource, ID and the request method.mp4 10.27 MB
~Get Your Files Here !/5. Create a RESTful API build a framework for serving the API/3. Use a client for API development cURL, Postman or HTTPie.mp4 6.79 MB
~Get Your Files Here !/5. Create a RESTful API build a framework for serving the API/4. Set the HTTP status code best practices.mp4 16.64 MB
~Get Your Files Here !/5. Create a RESTful API build a framework for serving the API/5. Add a controller class to decide the response.mp4 16.06 MB
~Get Your Files Here !/5. Create a RESTful API build a framework for serving the API/6. Use Composer's autoloader to load classes automatically.mp4 11.62 MB
~Get Your Files Here !/5. Create a RESTful API build a framework for serving the API/7. Make debugging easier add type declarations and enable strict type checking.mp4 17.44 MB
~Get Your Files Here !/5. Create a RESTful API build a framework for serving the API/8. Always return JSON add a generic exception handler and JSON Content-Type header.mp4 25.01 MB
~Get Your Files Here !/5. Create a RESTful API build a framework for serving the API/9. Send a 405 status code and Allow header for invalid request methods.mp4 19.29 MB
~Get Your Files Here !/6. Create a RESTful API create a database and retrieve data from it/1. Create a new database and a database user to access it.mp4 6.95 MB
~Get Your Files Here !/6. Create a RESTful API create a database and retrieve data from it/10. Respond with 404 if the resource with the specified ID is not found.mp4 15.71 MB
~Get Your Files Here !/6. Create a RESTful API create a database and retrieve data from it/2. Create a table to store resource data.mp4 4.63 MB
~Get Your Files Here !/6. Create a RESTful API create a database and retrieve data from it/3. Connect to the database from PHP add a Database class.mp4 18.4 MB
~Get Your Files Here !/6. Create a RESTful API create a database and retrieve data from it/4. Move the database connection data to a separate .env file.mp4 18.25 MB
~Get Your Files Here !/6. Create a RESTful API create a database and retrieve data from it/5. Create a table data gateway class for the resource table.mp4 13.73 MB
~Get Your Files Here !/6. Create a RESTful API create a database and retrieve data from it/6. Show a list of all records.mp4 13.37 MB
~Get Your Files Here !/6. Create a RESTful API create a database and retrieve data from it/7. Configure PDO to prevent numeric values from being converted to strings.mp4 15.48 MB
~Get Your Files Here !/6. Create a RESTful API create a database and retrieve data from it/8. Convert database booleans to boolean literals in the JSON.mp4 10.31 MB
~Get Your Files Here !/6. Create a RESTful API create a database and retrieve data from it/9. Show an individual record.mp4 12.87 MB
~Get Your Files Here !/7. Create a RESTful API create, update and delete individual resources/1. Get the data from the request as JSON.mp4 21.61 MB
~Get Your Files Here !/7. Create a RESTful API create, update and delete individual resources/2. Insert a record into the database and respond with a 201 status code.mp4 10.48 MB
~Get Your Files Here !/7. Create a RESTful API create, update and delete individual resources/3. Add a generic error handler to output warnings as JSON.mp4 19.02 MB
~Get Your Files Here !/7. Create a RESTful API create, update and delete individual resources/4. Validate the data and respond with a 422 status code if invalid.mp4 21.13 MB
~Get Your Files Here !/7. Create a RESTful API create, update and delete individual resources/5. Conditionally validate the data when updating an existing record.mp4 16.17 MB
~Get Your Files Here !/7. Create a RESTful API create, update and delete individual resources/6. Get the data from the request for updating an existing record.mp4 19.7 MB
~Get Your Files Here !/7. Create a RESTful API create, update and delete individual resources/7. Update the record in the database and return a 200 status code.mp4 22.38 MB
~Get Your Files Here !/7. Create a RESTful API create, update and delete individual resources/8. Delete the record in the database and return a 200 status code.mp4 10.59 MB
~Get Your Files Here !/8. API key authentication/1. Create a table to store user account data.mp4 14.56 MB
~Get Your Files Here !/8. API key authentication/10. Restrict the tasks index endpoint to only show the authenticated user's tasks.mp4 12.01 MB
~Get Your Files Here !/8. API key authentication/11. Restrict the rest of the task endpoints to the authenticated user's tasks.mp4 21.91 MB
~Get Your Files Here !/8. API key authentication/12. Cache the database connection to avoid multiple connections in the same request.mp4 10.72 MB
~Get Your Files Here !/8. API key authentication/2. Add a register page to insert a new user record and generate a new API key.mp4 30.56 MB
~Get Your Files Here !/8. API key authentication/3. Send the API key with the request query string or request header.mp4 14.4 MB
~Get Your Files Here !/8. API key authentication/4. Check the API key is present in the request and return 400 if not.mp4 7.92 MB
~Get Your Files Here !/8. API key authentication/5. Create a table data gateway class for the user table.mp4 11.63 MB
~Get Your Files Here !/8. API key authentication/6. Authenticate the API key and return a 401 status code if invalid.mp4 10.86 MB
~Get Your Files Here !/8. API key authentication/7. Refactor the front controller to a bootstrap file and Auth class.mp4 23.66 MB
~Get Your Files Here !/8. API key authentication/8. Add a foreign key relationship to link task records to user records.mp4 6.02 MB
~Get Your Files Here !/8. API key authentication/9. Retrieve the ID of the authenticated user when authenticating.mp4 10.2 MB
~Get Your Files Here !/9. An introduction to authentication using access tokens/1. An introduction to authentication using access tokens.mp4 8.43 MB
~Get Your Files Here !/9. An introduction to authentication using access tokens/2. Create the login script and return 400 if the username and password are missing.mp4 11.66 MB
~Get Your Files Here !/9. An introduction to authentication using access tokens/3. Select the user record based on the username in the request.mp4 12.41 MB
~Get Your Files Here !/9. An introduction to authentication using access tokens/4. Check the username and password and return a 401 status code if invalid.mp4 9.44 MB
~Get Your Files Here !/9. An introduction to authentication using access tokens/5. Generate an encoded access token containing the user details.mp4 14.27 MB
~Get Your Files Here !/9. An introduction to authentication using access tokens/6. Pass the access token to the task API endpoints in the authorization header.mp4 23.85 MB
~Get Your Files Here !/9. An introduction to authentication using access tokens/7. Validate the access token and decode its contents.mp4 24.15 MB
~Get Your Files Here !/9. An introduction to authentication using access tokens/8. Get the authenticated user data from the access token.mp4 17.74 MB
其他位置