Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bad URL Encoding #32

Open
GoogleCodeExporter opened this issue Mar 13, 2015 · 0 comments
Open

Bad URL Encoding #32

GoogleCodeExporter opened this issue Mar 13, 2015 · 0 comments

Comments

@GoogleCodeExporter
Copy link

Using solrpy==0.9.5:

There is an issue with URL encoding in this version. For example, I was trying 
to run the following query:

/select?q=stuff&defType=edismax&qf=name+description+name_subwords+description_su
bwords&wt=json&debug=true

c.query(text, fields=['type', 'id', 'name', 'description', 'name_subwords', 
'description_subwords'], defType='edismax', 
qf='name+description+name_subwords+description_subwords')

When core.py tries to URL encode the parameters on this line:

self.conn.request('POST', url, body.encode('UTF-8'), _headers)

the body.encode('UTF-8') changes the '+' characters to their proper URL 
encoding, '%2B'. This is a serious problem because solr doesn't understand qf 
fields delimited by %2B, just +

The Fix:

self.conn.request('POST', url, body.encode('UTF-8').replace('%2B', '+'), 
_headers)

Tada!

Original issue reported on code.google.com by Stevenrecio on 3 Dec 2012 at 9:02

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant