This repository is mostly dedicated to tracking issues (bugs, feature requests, questions, and general feedback) for Tango. You can use this space to report problems, request features, or ask questions.
View our CHANGELOG
To use the Tango API, you'll need to authenticate your requests using an API key. Here's how to get started:
- Log in to your Tango account
- Visit your profile page
- Your API key will be displayed on this page:
To authenticate your API requests, include your API key in the request headers using the X-API-Key
header:
curl -H "X-API-Key: your_api_key_here" https://tango.makegov.com/api/api-keys/
import requests
headers = {
"X-API-Key": "your_api_key_here"
}
response = requests.get(
"https://tango.makegov.com/api/api-keys/",
headers=headers
)
const headers = {
"X-API-Key": "your_api_key_here"
};
fetch("https://tango.makegov.com/api/api-keys/", {
headers: headers
})
.then(response => response.json())
.then(data => console.log(data));
- Keep your API key secure and never share it publicly
- Don't commit your API key to version control
- If you suspect your key has been compromised, contact us immediately to generate a new one
- Use environment variables to store your API key in applications
If you're having trouble with API authentication, please contact our support team for assistance: tango@makegov.com.
This repository is publicly accessible for users to submit:
- Bug reports
- Feature requests
- Questions
- General feedback
Please note that this repository does not contain any code or project files. It is solely for logging and tracking issues. The main project repository is private, but issues raised here will be addressed promptly.
If you've encountered a bug, please open a new issue and provide as much information as possible. This includes:
- A clear description of the bug.
- Steps to reproduce it.
- Expected behavior and actual behavior.
- Screenshots, if applicable.
To request a new feature, go to the Feature Request template and describe the improvement or new functionality you'd like to see.
If you have a question about Tango, you can open an issue using the Question Template. Our team will respond as soon as possible.
To streamline issue submissions, we have provided several templates for common cases:
- Bug Report
- Feature Request
- Question
- General Feedback
Please select the appropriate template when submitting your issue.
We encourage contributions in the form of feedback, bug reports, and feature requests. Please adhere to the following guidelines:
- Be clear and concise in your descriptions.
- Provide relevant context to help us address the issue.
- For more significant contributions, feel free to discuss your idea in an issue first.