let cookies = "cookiesKey=value;cookiesKey=value...."
let config = JWConfig (containtURL: "your url") config.assetOptions = ["AVURLAssetHTTPHeaderFieldsKey": ["cookie": cookies]]
as stated above, cookie, create a cookie string with a key and value and separate it with a semicolon and use this as a cookie in assets.
source
share