Suppose I own a website at "cookiemaker.com
". I want my client (website owners themselves) to send HTTP requests to my server that include cookies I generated. In other words:
- End-User "Bob" visits my site at cookiemaker.com
- I (
cookiemaker.com
) provides him with a cookie that his browser now stores - Bob is now visiting another website ("
cool-recipes.com
") - Bob clicks a button within cool-recipes.com, then his browser sends an HTTP request to
cookiemaker.com
.
Is there a way to include the cookie created at (2) in the request sent at (4)?
(Assuming full control of both websites)