Hi,
Im having an issue with the api requests. It works fine when I use the implemented scopus search api:
options.url = 'https://api.elsevier.com/content/search/scopus';
options.qs = {
query: 'au-id(' + authorId + ')',
field: 'eid,title,citedby-count,coverDate',
sort: 'coverDate',
count: 5
}
But when I change it to search for authors, I get an 401 AUTHORIZATION_ERROR:
options.url = "https://api.elsevier.com/content/search/author":
options.qs = {
query: 'af-id(SOME-ID)',
count: 25
}
Any suggestions?
Thank you
Hi,
Im having an issue with the api requests. It works fine when I use the implemented scopus search api:
options.url='https://api.elsevier.com/content/search/scopus';options.qs = {query: 'au-id(' + authorId + ')',field: 'eid,title,citedby-count,coverDate',sort: 'coverDate',count: 5}But when I change it to search for authors, I get an 401 AUTHORIZATION_ERROR:
options.url = "https://api.elsevier.com/content/search/author":options.qs = {query: 'af-id(SOME-ID)',count: 25}Any suggestions?
Thank you