We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bad9315 commit 08bf5e3Copy full SHA for 08bf5e3
1 file changed
README.md
@@ -20,6 +20,8 @@ use Scopus\ScopusApi;
20
// replace with your API key
21
$apiKey = "114ff0c3b57a0ec62e15efdedefd2e6f";
22
$api = new ScopusApi($apiKey);
23
+
24
+// Scopus Search API
25
$results = $api
26
->query("af-id(60071066)")
27
->start(0)
@@ -31,13 +33,17 @@ var_dump($results);
31
33
32
34
foreach ($results->getEntries() as $entry) {
35
$abstractUrl = $entry->getLinks()->getSelf();
36
37
+ // Abstract Retrieval API
38
$abstract = $api->retrieve($abstractUrl);
39
40
var_dump($abstract);
41
42
$authors = $entry->getAuthors();
43
foreach ($authors as $author) {
44
$authorUrl = $author->getUrl();
45
46
+ // Author Retrieval API
47
$author = $api->retrieve($authorUrl);
48
49
var_dump($author);
0 commit comments