Skip to content

Commit

Permalink
#32 test GET only on 1st request
Browse files Browse the repository at this point in the history
  • Loading branch information
eblondel committed Jun 17, 2024
1 parent 9faa693 commit 6505693
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions R/GNOpenAPIManager.R
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,9 @@ GNOpenAPIManager <- R6Class("GNOpenAPIManager",

keyring_token <- private$getToken()
if(!is.null(keyring_token)){
req <- GNUtils$GET(
req <- GNUtils$POST(
url = paste0(self$getUrl(), "/", self$lang), path = "/info?type=me",
user = user, pwd = private$getPwd(), token = keyring_token, cookies = private$cookies,
user = user, pwd = private$getPwd(), token = keyring_token, cookies = private$cookies, content = NULL, contentType = NULL,
verbose = TRUE
)
}
Expand Down

0 comments on commit 6505693

Please sign in to comment.