Reputation: 11
How to extract the paper data by querying DOI as a parameter, in GET/POST request URL.
Basically, I tried with by querying paper Id as a parameter. Please refer my sample code as followed.
I am getting the output as- {"expr": "And(Id=2153635508)","entities":[{"logprob": -13.241,"prob": 1.7762609374E-06,"Id": 2153635508,"Ti": "libsvm a library for support vector machines","DOI": "10.1145/1961189.1961199","PK": 2153635508}]}
Basically, I want the same output by the help of DOI instead of Id in the query parameter.
Upvotes: 1
Views: 40
Reputation: 888
The expr
-field should be DOI='{DOI}'
, for example:
You can change the attributes
field to get the data you need.
Upvotes: 0