cancel
Showing results forย 
Search instead forย 
Did you mean:ย 

Public API Basic Authentication

dwhansen-cbg
Contributor

The SnapLogic public API uses basic authentication. How do I get the basic authentication token outside of SnapLogic? Is there an auth endpoint? How long is the token good for?

1 ACCEPTED SOLUTION

dwhansen-cbg
Contributor

For anybody interested in knowing how to call a SnapLogic public API using Python:

import requests
from requests.auth import HTTPBasicAuth

snaplogic_user = "user@user.com"
snaplogic_password = "SuperCoolPassword"

url = "https://elastic.snaplogic.com/api/1/rest/public/runtime/<YourOrg>"
auth = HTTPBasicAuth(snaplogic_user, snaplogic_password)

response = requests.get(url, auth=auth)

Youโ€™ll definitely want to retrieve your username and password securely, but the gist is the same.

View solution in original post

1 REPLY 1

dwhansen-cbg
Contributor

For anybody interested in knowing how to call a SnapLogic public API using Python:

import requests
from requests.auth import HTTPBasicAuth

snaplogic_user = "user@user.com"
snaplogic_password = "SuperCoolPassword"

url = "https://elastic.snaplogic.com/api/1/rest/public/runtime/<YourOrg>"
auth = HTTPBasicAuth(snaplogic_user, snaplogic_password)

response = requests.get(url, auth=auth)

Youโ€™ll definitely want to retrieve your username and password securely, but the gist is the same.