0

I am building a python application and I need to be able to authenticate through an ODK aggregate server. By "authenticate" I mean that, I need to send the login information (username and password) to the ODK aggregate server and it should return if the credentials are correct and the user is active. I rather user python's requests library, but I am open to other suggestions.

Ernesto Ruiz
  • 736
  • 9
  • 31
  • seems like this is covered in their docs https://odkcentral.docs.apiary.io/#reference/authentication/session-authentication/logging-in you probably want the "Basic" version – Joran Beasley Jun 05 '23 at 22:04
  • Thank you, but that documentations covers ODK central. My project needs to use ODK aggregate, wich is the old version. – Ernesto Ruiz Jun 06 '23 at 12:46

1 Answers1

0

Here you go: https://docs.getodk.org/openrosa-authentication/

P.S. As you'll likely already know ODK Aggregate reached end-of-life a couple of years ago, and has security issues (that won't be fixed).

Martijn van de Rijdt
  • 1,020
  • 3
  • 10
  • 16