You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
from betfair import Betfair
client = Betfair('test', 'certs/betfair.pem')
client.login('username', 'password')
from betfair.models import MarketFilter
event_types = client.list_event_types(
MarketFilter(text_query='tennis')
)
I get this error:
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "<string>", line 2, in list_event_types
File "betfair/utils.py", line 125, in requires_login
return func(*args, **kwargs)
File "betfair/betfair.py", line 125, in list_event_types
model=models.EventTypeResult,
File "betfair/betfair.py", line 62, in make_api_request
result = utils.result_or_error(response)
File "betfair/utils.py", line 67, in result_or_error
raise exceptions.BetfairAPIError(response, data)
betfair.exceptions.BetfairAPIError: INVALID_APP_KEY
Firt of al, thanks alot for the great wrapper!
When I execute the code from the readme,
I get this error:
The invalid app key error is not mentioned on the developers help site here:
https://api.developer.betfair.com/services/webapps/docs/display/1smk3cen4v3lu3yomq5qye0ni/Non-Interactive+%28bot%29+login
So I guess the reason is somewhere on the plugin side?
The text was updated successfully, but these errors were encountered: