Imagine I am the owner of a website called "treat1creator.com". I want my clients, who are also website owners, to send HTTP requests to my server that contain cookies I have generated. Here is how it works:
- User "Sally" visits my site at treat1creator.com
- I (treat1creator.com) provide her with a cookie that her browser saves
- Sally then goes to another website called "recipe-fun.com"
- When Sally clicks a button on recipe-fun.com, her browser sends an HTTP request to treat1creator.com.
Is there a way for me to include the cookie created in step 2 in the request sent in step 4?
(Assuming I have full control over both websites)