/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

thepythoncorner.com
| | www.altexsoft.com
3.0 parsecs away

Travel
| | REST is short for Representational State Transfer, an architectural style for building web services. How does it work and what are its benefits?
| | openapi.com
2.5 parsecs away

Travel
| | Application Programming Interface (API): what is an API key, how it works and when to use it
| | www.rasikjain.com
2.8 parsecs away

Travel
| | Here are three scenarios for implementing authentication workflows. Internet Applications (Public facing) For internet web applications and APIs, Session based (SessionID cookie) and Token Based (JWT) Authentication can be implemented. Session Based: Implemented for a majority of traditional and stateful web applications. Once the user is authenticated, A Session state is created and stored in an external State server or SQL database. The Session state is identified by a unique SessionID....
| | www.adamalbrecht.com
19.8 parsecs away

Travel
| UPDATE: There have been some changes in the JWT Gem that make some of the below not work exactly right (it'll still be about 90% the same). Specifically, they added expiration support. See my post on the same topic, but using React.js. The server side code in this post will work just as well with Angular.