You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is anybody other than me annoyed by this? I can't quite understand why the oauth module is so strict, and makes me wonder if there should be a normalization of the input query string ahead of its handling the request.
But quotes have to be escaped, unless I'm wrong, of course. When I use curl
it fails too. I will check though
On Oct 14, 2015 9:37 AM, "Alberto Accomazzi" notifications@github.com
wrote:
Is anybody other than me annoyed by this? I can't quite understand why the
oauth module is so strict, and makes me wonder if there should be a
normalization of the input query string ahead of its handling the request.
—
Reply to this email directly or view it on GitHub #15 (comment)
.
But either way, my general impression is that the oauth module we are using is overly restrictive, and don't quite understand why. The fact that we have to monkey-patch it is disturbing to me and makes me wonder whether I'm missing something.
Currently this query to the search API produces a 500 error:
https://api.adsabs.harvard.edu/v1/search/query?q=full:"foo"
However, this one works fine:
https://api.adsabs.harvard.edu/v1/search/query?q=full:%22foo%22
The only difference here is that the double quotes have been hex-encoded.
The text was updated successfully, but these errors were encountered: