Giter VIP home page Giter VIP logo

cookie_jar's Introduction

CookieJar

hex.pm version API Docs

COOKIE JAR

Installation

The package can be installed by adding cookie_jar to your list of dependencies in mix.exs:

def deps do
  [{:cookie_jar, "~> 1.0"}]
end

Usage

  1. Add alias (optional)
alias CookieJar.HTTPoison, as: HTTPoison
  1. Get a cookie jar
{:ok, jar} = CookieJar.new

Alternatively, you can use a permenent cookie jar by starting one as part of your supervision tree:

def start(_type, _args) do
  children = [
  {CookieJar.Server, name: MyApp.CookieJar},
  ...

Then you can use MyApp.CookieJar as the application-wide jar.

  1. Shove the jar into all http calls
- HTTPoison.get("https://example.com/api/call")
+ HTTPoison.get(jar, "https://example.com/api/call")
  1. Profit (cookies imprisoned) All cookies from "Set-Cookie:" response headers are now stored in the jar and will be automatically sent back through "Cookie:" request headers. CookieJar respect the following attributes in the cookies:
  • Domain: To limit abuses, CookieJar only allows Domain to be set to the current hostname of the request or its immediate parent domain.
  • Path: A cookie can limit the sending back to part of the path tree in the request
  • Secure: A secure cookie can only be set by https responses and used by https requests
  • Max-Age: A cookie can specify its max age

All other attributes are silently ignored.

Take a look at the docs

cookie_jar's People

Contributors

princemaple avatar dependabot[bot] avatar dependabot-preview[bot] avatar crowdhailer avatar dependabot-support avatar derek-zhou avatar renovate-bot avatar ianvermes avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.