We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 31ae88b commit bad9315Copy full SHA for bad9315
1 file changed
test/test.php
@@ -12,6 +12,8 @@
12
$apiKey = "114ff0c3b57a0ec62e15efdedefd2e6f";
13
14
$api = new ScopusApi($apiKey);
15
+
16
+// Scopus Search API
17
$results = $api
18
->query("af-id(60071066)")
19
->start(0)
@@ -23,13 +25,17 @@
23
25
24
26
foreach ($results->getEntries() as $entry) {
27
$abstractUrl = $entry->getLinks()->getSelf();
28
29
+ // Abstract Retrieval API
30
$abstract = $api->retrieve($abstractUrl);
31
32
var_dump($abstract);
33
34
$authors = $entry->getAuthors();
35
foreach ($authors as $author) {
36
$authorUrl = $author->getUrl();
37
38
+ // Author Retrieval API
39
$author = $api->retrieve($authorUrl);
40
41
var_dump($author);
0 commit comments