Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 1.1 KB

File metadata and controls

26 lines (17 loc) · 1.1 KB

Reading notes for class 36 of 401

Application State with Redux

What are the advantages of storing tokens in “Cookies” vs “Local Storage”

Local storage can be read by the client however cookies is mainly used for server sided reading

Explain 3rd party cookies.

Third-party cookies are created by domains that are not the website (or domain) that you are visiting.

How do pixel tags work?

Pixel Tags attach to a browser and collect information about an anonymous user's movements on the Internet.

Vocab

Cookies

  • a cookie is a sample of text dropped onto a browser while viewing a website. This text collects data from a user such as their activity on a website, browsing history, geographic location, purchase trends, and more.

Authorization

  • process by which a server determines if the client has permission to use a resource or access a file

Access Control

  • determines what roles can access specific abilities

Conditional Rendering

  • Conditional rendering is a term to describe the ability to render different user interface (UI) markup if a condition is true or false.