mixpanelGetData {RMixpanel} | R Documentation |
This method handles the authentication and download of data from the Mixpanel API as well as data persistance. The method is used by many of the more specialized methods of this package.
mixpanelGetData(account, method="export/", args, validitySeconds=60, verbose=TRUE,
fileName="", data=FALSE, retryCount=0, encoding="UTF-8")
account |
A mixpanel account, as defined in |
method |
API method (route). |
args |
Arguments as described in https://mixpanel.com/help/reference/data-export-api. |
validitySeconds |
Expiration of API request. |
verbose |
If |
fileName |
File name to persist data (defaults to './temp.txt'). If supplied, account$dataPath is used as path. |
data |
If |
retryCount |
How many times a failed request should be retried? |
encoding |
JSON Encoding. Default is UTF8. |
If data==TRUE
, the method returns the response of the API request (raw character vector). Otherwise nothing is returned.
Meinhard Ploner
https://mixpanel.com/help/reference/data-export-api
## Not run:
## Fill in here the API token, key and secret as found on
## www.mixpanel.com - Account -> Projects.
account = mixpanelCreateAccount("ProjectName",
token="c12g3...",
secret="168e7e...",
key="543c55...")
mixpanelGetData(account, method="funnels/list/", args=list(), data=TRUE)
## End(Not run)