There is a site researcherid.
On author page, for example, http://www.researcherid.com/rid/A-7364-2016 i need to retrieve information from Citation metrics window. That`s the window generated by ajax. How can i do it with Python ? What tools i have for it?
I tried:
payload = {'key': '721889',
'listid': 'LIST1',
'displayName': 'My Publications', 'publicProfile': 'true', '_': ''
}
r = requests.post('http://www.researcherid.com/rid/A-7364-2016',
data=payload, headers={
'X-Requested-With': 'XMLHttpRequest'
})
print(r.text)
But it does`t work.