Skip to content

Commit

Permalink
fix url
Browse files Browse the repository at this point in the history
  • Loading branch information
compscidr committed May 8, 2024
1 parent 9a22856 commit 1b56d81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scholar.go
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ func (sch Scholar) QueryProfileDumpResponse(user string, queryArticles bool, lim
client := &http.Client{}

// todo: make page size configurable, also support getting more than one page of citations
req, err := http.NewRequest("GET", BaseURL+"/citations?User="+user+"&cstart=0&pagesize="+strconv.Itoa(limit), nil)
req, err := http.NewRequest("GET", BaseURL+"/citations?user="+user+"&cstart=0&pagesize="+strconv.Itoa(limit), nil)
if err != nil {
log.Fatalln(err)
}
Expand Down

0 comments on commit 1b56d81

Please sign in to comment.