Hi all,
I am a college student and doing research work in Microsoft Academic search API. I am in the process of getting a huge data set which is described as below.
For a particular conference (say SIGMOD), get all the papers and details of the authors. By setting the "resultobjects" as Publication, I can get the details of the paper and author.
My sample JSON query to accomplish the above will look as below.
http://academic.research.microsoft.com/table.svc/search?AppId=XXXXX&ConferenceQuery=
AAAI&ResultObjects=Publication&PublicationContent=Title,Author&StartIdx=1&EndIdx=10
I need to get the author detail of the above query (i.e.) Author's basic info like firstname, lastname, nativename etc. For this, I need to use the "resultobjects" as Author. However,
I have to accomplish something like this.
http://academic.research.microsoft.com/table.svc/search?AppId=XXXXX&ConferenceQuery=
AAAI&ResultObjects=Author&ResultObjects=Publication&PublicationContent=Title,Author&StartIdx=1&EndIdx=10
Is there any way to get the data as above?
Thanks & Regards,
Ramesh