Description
Functions to obtain help with the MTurk API (as opposed to the MTurkR package itself). mturkrhelp
makes help requests directly to the API, while APIReference
simply loads the API documentation.Usage
mturkhelp( about, helptype = NULL, keypair = credentials(), print = TRUE,
browser = FALSE, log.requests = TRUE)
APIReference()
Arguments
about
A character string containing a help query.
helptype
Optionally either Operation or ResponseGroup.
keypair
A two-item character vector containing an AWS Access Key ID in the first position and the corresponding Secret Access Key in the second position. Set default with credentials
. print
Optionally print the results of the API request to the standard output. Default is TRUE
.
browser
Optionally open the request in the default web browser, rather than opening in R. Default is FALSE
.
log.requests
A logical specifying whether API requests should be logged. Default is TRUE
. See readlogfile
for details. Value
- Nothing. For
mturkhelp
: help information is printed to the standard output. For APIReference
: the MTurk API documentation is opened in the user's default browser.}
references{
href{http://docs.amazonwebservices.com/AWSMechTurk/latest/AWSMechanicalTurkGettingStartedGuide/Welcome.html?r=9808}{Getting Started Guide}
href{http://docs.amazonwebservices.com/AWSMechTurk/latest/AWSMechanicalTurkRequester/Welcome.html?r=349}{Developer Guide}
href{http://docs.amazonwebservices.com/AWSMechTurk/latest/AWSMturkAPI/Welcome.html?r=3235}{API Reference}
href{http://awsdocs.s3.amazonaws.com/MechTurk/latest/QRC-MTurk.pdf}{Quick Reference}
}
author{Thomas J. Leeper}
%\note{}
%\seealso{}
examples{
dontrun{
mturkhelp(about="GrantBonus",helptype="Operation")
APIReference()
}
}
keyword{Documentation}
Details
Some basic functions to get help with the MTurk API (as opposed to the MTurkR package). Whiel intended to be user-friendly, sophisticated use of MTurkR may require some understanding of hte MTurk API, which is easily accessed here.