Kodi Community Forum

Full Version: Possible to use cookie for path, for e.g. setThumbnailImage?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi!

Im wondring if its posible to add cookies to the url path to for e.g. setThumbnailImage? I need it for authentication.

Best regards
Yes, add a pipe character after the url to specify headers:
Code:
http://www.example.com/foo.jpg|referer=xbmc.org&cookie=ladjkfhauhflen0287346ohui

Remember to urlencode all of the parameter values
(2014-01-19, 19:57)Bstrdsmkr Wrote: [ -> ]Yes, add a pipe character after the url to specify headers:
Code:
http://www.example.com/foo.jpg|referer=xbmc.org&cookie=ladjkfhauhflen0287346ohui

Remember to urlencode all of the parameter values

Thanks, Is the example below correct, or do i need referer?

Code:
http://www.example.com/foo.jpg|cookie=cname=cdata


Best regards
The whole value from = to = will be set to the associated header. Since your value contains =, you'll need to escape it by urlencoding the parameter. %3D is the urlencoded equivalent of =, so you'll want something like this:

Code:
http://www.example.com/foo.jpg|cookie=cname%3Dcdata
(2014-01-19, 20:19)Bstrdsmkr Wrote: [ -> ]The whole value from = to = will be set to the associated header. Since your value contains =, you'll need to escape it by urlencoding the parameter. %3D is the urlencoded equivalent of =, so you'll want something like this:

Code:
http://www.example.com/foo.jpg|cookie=cname%3Dcdata

Thank you Bstrdsmkr, I got it now.