blob: 13ebf7e501bf345075ddf91ac0fec2e1e7abfbd8 [file] [log] [blame]
Marc Kupietze95108e2019-09-18 13:23:58 +02001% Generated by roxygen2: do not edit by hand
2% Please edit documentation in R/KorAPConnection.R
3\docType{class}
4\name{KorAPConnection-class}
5\alias{KorAPConnection-class}
6\alias{KorAPConnection}
7\alias{initialize,KorAPConnection-method}
Marc Kupietzb956b812019-11-25 17:53:13 +01008\alias{persistAccessToken,KorAPConnection-method}
9\alias{persistAccessToken}
10\alias{clearAccessToken,KorAPConnection-method}
11\alias{clearAccessToken}
Marc Kupietzd0d3e9b2019-09-24 17:36:03 +020012\alias{apiCall,KorAPConnection-method}
13\alias{apiCall}
Marc Kupietz0a96b282019-10-01 11:05:31 +020014\alias{clearCache,KorAPConnection-method}
15\alias{clearCache}
Marc Kupietze95108e2019-09-18 13:23:58 +020016\alias{show,KorAPConnection-method}
17\title{Class KorAPConnection}
18\usage{
Marc Kupietz76685f52019-11-25 17:46:06 +010019\S4method{initialize}{KorAPConnection}(
20 .Object,
21 KorAPUrl = "https://korap.ids-mannheim.de/",
22 apiVersion = "v1.0",
23 apiUrl,
Marc Kupietzb956b812019-11-25 17:53:13 +010024 accessToken = getAccessToken(KorAPUrl),
Marc Kupietz76685f52019-11-25 17:46:06 +010025 userAgent = "R-KorAP-Client",
Marc Kupietz6a3185b2021-12-07 10:23:16 +010026 timeout = 240,
Marc Kupietz76685f52019-11-25 17:46:06 +010027 verbose = FALSE,
28 cache = TRUE
29)
Marc Kupietz4862b862019-11-07 10:13:53 +010030
Marc Kupietzb956b812019-11-25 17:53:13 +010031\S4method{persistAccessToken}{KorAPConnection}(kco, accessToken = kco@accessToken)
Marc Kupietz4862b862019-11-07 10:13:53 +010032
Marc Kupietzb956b812019-11-25 17:53:13 +010033\S4method{clearAccessToken}{KorAPConnection}(kco)
Marc Kupietzd0d3e9b2019-09-24 17:36:03 +020034
Marc Kupietza4675722022-02-23 23:55:15 +010035\S4method{apiCall}{KorAPConnection}(
36 kco,
37 url,
38 json = TRUE,
39 getHeaders = FALSE,
40 cache = kco@cache,
41 timeout = kco@timeout
42)
Marc Kupietze95108e2019-09-18 13:23:58 +020043
Marc Kupietz0a96b282019-10-01 11:05:31 +020044\S4method{clearCache}{KorAPConnection}(kco)
45
Marc Kupietze95108e2019-09-18 13:23:58 +020046\S4method{show}{KorAPConnection}(object)
47}
48\arguments{
49\item{.Object}{KorAPConnection object}
50
51\item{KorAPUrl}{the URL of the KorAP server instance you want to access.}
52
53\item{apiVersion}{which version of KorAP's API you want to connect to.}
54
55\item{apiUrl}{URL of the KorAP web service.}
56
Marc Kupietzb956b812019-11-25 17:53:13 +010057\item{accessToken}{OAuth2 access token. To use authorization based on an access token
Marc Kupietz43a6ade2020-02-18 17:01:44 +010058in subsequent queries, initialize your KorAP connection with
Marc Kupietzb956b812019-11-25 17:53:13 +010059\code{kco <- new("KorAPConnection", accessToken="<access token>")}.
Marc Kupietz4862b862019-11-07 10:13:53 +010060In order to make the API
61token persistent for the currently used \code{KorAPUrl} (you can have one
62token per KorAPUrl / KorAP server instance), use
Marc Kupietzb956b812019-11-25 17:53:13 +010063\code{persistAccessToken(kco)}. This will store it in your keyring using the
Marc Kupietz67edcb52021-09-20 21:54:24 +020064\code{\link[=keyring]{keyring()}} package. Subsequent new("KorAPConnection") calls will
Marc Kupietz4862b862019-11-07 10:13:53 +010065then automatically retrieve the token from your keying. To stop using a
Marc Kupietzb956b812019-11-25 17:53:13 +010066persisted token, call \code{clearAccessToken(kco)}. Please note that for
Marc Kupietz4862b862019-11-07 10:13:53 +010067DeReKo, authorized queries will behave differently inside and outside the
68IDS, because of the special license situation. This concerns also cached
69results which do not take into account from where a request was issued. If
Marc Kupietz67edcb52021-09-20 21:54:24 +020070you experience problems or unexpected results, please try \code{kco <- new("KorAPConnection", cache=FALSE)} or use
71\code{\link[=clearCache]{clearCache()}} to clear the cache completely.}
Marc Kupietz4862b862019-11-07 10:13:53 +010072
Marc Kupietzd0d3e9b2019-09-24 17:36:03 +020073\item{userAgent}{user agent string.}
74
75\item{timeout}{time out in seconds.}
76
Marc Kupietz4862b862019-11-07 10:13:53 +010077\item{verbose}{logical. Decides whether following operations will default to
78be verbose.}
Marc Kupietz5a519822019-09-20 21:43:52 +020079
Marc Kupietz4862b862019-11-07 10:13:53 +010080\item{cache}{logical. Decides if API calls are cached locally. You can clear
Marc Kupietz67edcb52021-09-20 21:54:24 +020081the cache with \code{\link[=clearCache]{clearCache()}}.}
Marc Kupietz0a96b282019-10-01 11:05:31 +020082
Marc Kupietzd0d3e9b2019-09-24 17:36:03 +020083\item{kco}{KorAPConnection object}
84
85\item{url}{request url}
86
Marc Kupietzb2b32a32020-03-24 13:56:50 +010087\item{json}{logical that determines if json result is expected}
88
Marc Kupietzb49afa02020-06-04 15:50:29 +020089\item{getHeaders}{logical that determines if headers and content should be returned (as a list)}
90
Marc Kupietze95108e2019-09-18 13:23:58 +020091\item{object}{KorAPConnection object}
92}
93\value{
Marc Kupietz67edcb52021-09-20 21:54:24 +020094\code{\link[=KorAPConnection]{KorAPConnection()}} object that can be used e.g. with
95\code{\link[=corpusQuery]{corpusQuery()}}
Marc Kupietze95108e2019-09-18 13:23:58 +020096}
97\description{
Marc Kupietz7776dec2019-09-27 16:59:02 +020098\code{KorAPConnection} objects represent the connection to a KorAP server.
Marc Kupietz7715e9d2019-11-08 15:59:58 +010099New \code{KorAPConnection} objects can be created by \code{new("KorAPConnection")}.
Marc Kupietze95108e2019-09-18 13:23:58 +0200100}
Marc Kupietze95108e2019-09-18 13:23:58 +0200101\examples{
Marc Kupietz6ae76052021-09-21 10:34:00 +0200102\dontrun{
103
Marc Kupietz5a519822019-09-20 21:43:52 +0200104kcon <- new("KorAPConnection", verbose = TRUE)
Marc Kupietze95108e2019-09-18 13:23:58 +0200105kq <- corpusQuery(kcon, "Ameisenplage")
Marc Kupietz5a519822019-09-20 21:43:52 +0200106kq <- fetchAll(kq)
Marc Kupietz05b22772020-02-18 21:58:42 +0100107}
Marc Kupietze95108e2019-09-18 13:23:58 +0200108
Marc Kupietz4862b862019-11-07 10:13:53 +0100109\dontrun{
Marc Kupietz6ae76052021-09-21 10:34:00 +0200110
Marc Kupietzb956b812019-11-25 17:53:13 +0100111kcon <- new("KorAPConnection", verbose = TRUE, accessToken="e739u6eOzkwADQPdVChxFg")
Marc Kupietz4862b862019-11-07 10:13:53 +0100112kq <- corpusQuery(kcon, "Ameisenplage", metadataOnly=FALSE)
113kq <- fetchAll(kq)
114kq@collectedMatches$snippet
115}
116
117\dontrun{
Marc Kupietz6ae76052021-09-21 10:34:00 +0200118
Marc Kupietzb956b812019-11-25 17:53:13 +0100119kco <- new("KorAPConnection", accessToken="e739u6eOzkwADQPdVChxFg")
120persistAccessToken(kco)
Marc Kupietz4862b862019-11-07 10:13:53 +0100121}
122
123\dontrun{
Marc Kupietz6ae76052021-09-21 10:34:00 +0200124
Marc Kupietz4862b862019-11-07 10:13:53 +0100125kco <- new("KorAPConnection")
Marc Kupietzb956b812019-11-25 17:53:13 +0100126clearAccessToken(kco)
Marc Kupietz4862b862019-11-07 10:13:53 +0100127}
128
Marc Kupietze95108e2019-09-18 13:23:58 +0200129}