I've been using Microsoft Academic Knoledge API for a week, I didn't have any problems until now. I want to get all the papers from a conference, for example, ICLR or ICML. I'm trying with the following query that I got from the "interpret" method:
'expr': "Composite(C.CN=='iclr')",
'model': 'latest',
'count': '100',
'offset': '0',
'attributes': 'Ti,D,C.CN,AA.AuN,AA.AfN,F.FN,CC',
But I'm just getting one paper, not an array of results:
{'authors': 'Karen Simonyan, Andrew Zisserman', 'affiliations': 'University Of Oxford, University Of Oxford', 'citations': 3249, 'fields': 'Theoretical Computer Science, Computer Vision, Machine Learning, Computer Science'}
Is there any way to get all the results at once?
Thank you so much.