Quote:
Originally Posted by Ether
@ all: What language do you use to access the FRC API?
|
TBA uses python.
I have the following bash function defined for local testing (using
httpie):
Code:
function frc-api {
AUTH=$(echo -n '<username>:<token> ' | base64)
http $1 "Authorization: Basic ${AUTH}"
}