I'd like to do the following:
citation = GoogleSearch({'q':gsch_res['result_id'],'engine':'google_scholar_cite'})
links = citation['links']
cite_data = {}
for link in links:
cite_data[link['name']] = requests.get(link['link'], params={'api_key':'myapikey'}).text
But the link given is the direct link, not a serpapi link. So you are denied the resource. Can you add the serpapi link to get the citation data file? Then
link['link']
could be replaced with
link['serpapi_link']
.