Scopus API -> All citations to publication -


is possible citations concrete publication (by scopus_id, doi ...) elsevier api?

i trying that, can do, count of citations, need authors annd titles al least.

for example, if wanna do:

https://api.elsevier.com/content/abstract/citations?pubmed_id=3472723&httpaccept=application/json&apikey={mykey} 

i get:

"{"service-error":{"status":{"statuscode":"authentication_error","statustext":"requestor configuration settings insufficient access resource."}}}" 

is possible want?

thanks

i had same problem, found solution:

firstly should have json article data , article's 'eid'. thus, can find citations of article next query:

"https://api.elsevier.com/content/search/scopus?query=refeid(" + str(article['eid']) + ')' 

article json data of article

also had problem keywords, , solution is:

article json has article['prism:url'] parameter, , can use keywords field, query keywords is:

article['prism:url'] + "?field=authkeywords" 

Popular posts from this blog