πŸ“„
Docs
  • πŸ’»Gateway Server and API Docs
  • πŸ“”Client-Side Helper Functions
  • πŸ—ΊοΈMapping
  • πŸ””Notifications
  • 😎HoloLens
  • πŸ› οΈTSS Utility Routes
  • πŸ§ͺTest Routes
Powered by GitBook
On this page

Test Routes

Testing Routes for the Gateway API

The Gateway Server provides a test route to make sure that you are up-and-running nicely.

You can view this in the code, however they won't provide any functionality besides basic cURL requesting.

Test Route

import requests as req

res = req.get('http://[IP]:3001/tests/hello')
print(res.text)

# This will output { "message": "Hello from Flask" }

Thanks for reading! Do let me know with any questions at the links found at Gateway Server and API Docs

PreviousTSS Utility Routes

Last updated 1 year ago

πŸ§ͺ