[Fixed]-Python Foursquare API Wrapper – TypeError __init__() got an unexpected keyword argument 'clientId'

1👍

The docs for the foursquare api show that you should be using client_id and client_secret, instead of clientId and clientSecret.

fs = Foursquare(client_id='XXXXXXX',
                client_secret='XXXXXX',
                version='20170127',
)

Leave a comment