Python
import requests url = "https://{FUSION HOST}/api/signals/{collection}/i" headers = {"Authorization": "Basic <encoded-value>"} response = requests.get(url, headers=headers) print(response.text)
"aSDinaTvuI8gbWludGxpZnk="
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Basic <encoded-value>
<encoded-value>
username:password
The name of the signals collection.
Show child attributes
OK
The response is of type string<byte>.
string<byte>
Was this page helpful?