Receiving temporary credentials for AWS Sitewise Edge REST API

0

How can I receive the temporary credentials for AWS Sitewise Edge REST API without OpsHub UI?

已提问 2 年前243 查看次数
1 回答
3
已接受的回答

Hi,

you can get Edge credentials from https://<your_edge_gateway>/authenticate/.

Some Python code:

  • host is you edge gateway
  • user and password are credentials for your edge user.
  • auth_mech can be linux or ldap depending on your gateway configuration
def get_creds(host, user, password, auth_mech):
    url = f"https://{host}/authenticate/"
    
    data = { 
        "username": user, 
        "password": password, 
        "authMechanism": auth_mech
    }

    headers = {
        "Content-Type": "application/json",
        "Accept": "application/json",
    }
    
    try:
        print(f'\nfetching API credentials from: "{url}"')
        
        # disable bandit warning for disabling SSL cert checks
        # because we us a self signed cert for demo purposes only
        request = requests.post(
            url, data=json.dumps(data),
            headers=headers, verify=False # nosec
        )
        
        if 'accessKeyId' in request.json() and \
            'secretAccessKey' in request.json() and \
            'sessionToken' in request.json():
            print("\nAPI credentials for the edge:")
            print(f"they expire {request.json()['sessionExpiryTime']}")
            print("-----------------------------")
            print(f"export AWS_ACCESS_KEY_ID={request.json()['accessKeyId']}")
            print(f"export AWS_SECRET_ACCESS_KEY={request.json()['secretAccessKey']}")
            print(f"export AWS_SESSION_TOKEN={request.json()['sessionToken']}")
            print('export AWS_REGION=Edge')
        else:
            print('ERROR: could not find credentials in response:')
            print(request.json())
    except Exception as error:
        print(f'ERROR: url: {url}: {error}')

Cheers,
Philipp

AWS
专家
已回答 2 年前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则