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
you should just use the json api with the requests library, to do a get request with auth just do
auth = (BASECAMP_USER,BASECAMP_PASSWORD)
result = requests.get(BASECAMP_API_URL,auth=auth).json()
then result is a python dictonary of the json response. im writting a regular python api for this right now based on this. im really suprised no one else has yet.
Not really an issue - but is there a way to bypass the browser-based auth if I just want to write a script that accesses my own Basecamp account?
The text was updated successfully, but these errors were encountered: