Matt Wette <matt.we...@gmail.com> writes: > Does someone have example of using the Accept header with http-get?
I don't. > I'm basically calling > (http-get url #:headers (list auth (parse-header 'accept "*/*") ...) > > and getting back error from web/request.scm: > (validate-headers (((*/*)) ... ) > > header name not a symbol (*/*) It's right about that. "*/*" is a string, not a symbol. Contrarywise, '*/* is a symbol, whether that fixes your problem, I can't say. -- Keith