logoutBF | R Documentation |
logoutBF
terminates the current session. loginBF
will
need to be called again before any further actions can be performed.
logoutBF(suppress = TRUE, sslVerify = TRUE)
suppress |
Boolean. |
sslVerify |
Boolean. This argument defaults to TRUE and is optional. In some cases, where users have a self signed SSL Certificate, for example they may be behind a proxy server, Betfair will fail login with "SSL certificate problem: self signed certificate in certificate chain". If this error occurs you may set sslVerify to FALSE. This does open a small security risk of a man-in-the-middle intercepting your login credentials. |
logoutBF
terminates the current session. loginBF
will
need to be called again before any further actions can be performed.
Similar to loginBF
, the call output is parsed from JSON
as a list, from which the statuses SUCCESS or FAIL and error, if it is
not null are returned as a colon seperated concatenated string. For error
values, see
https://api.developer.betfair.com/services/webapps/docs/display/1smk3cen4v3lu3yomq5qye0ni/Logout.
https://api.developer.betfair.com/services/webapps/docs/display/1smk3cen4v3lu3yomq5qye0ni/Logout for general information on requesting Logout on the Betfair API.
loginBF
, which must be executed first, as this
function requires a valid session token
## Not run: loginBF("username","password","appKey") logoutBF() logoutBF() The last logout in this block will return an error. The first logout terminates the session, meaning there is no session to end on the second logout request. ## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.