FILL BLANK - Fill in the blanks to complete the Python script to retrieve a list of network devices using the Cisco DNA
Posted: Fri Jul 22, 2022 2:52 pm
FILL BLANK -
Fill in the blanks to complete the Python script to retrieve a list of network devices using the Cisco DNA Center API. my_token=
'eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzl1NiJ9.ey.JzdWliOil1ZDE0OWZkMjhlZTY2
MmQ3NGM5YzE5ZTliLmYzMClslmV4cCI6MTU3MjM3ODE5MCwidXNlcm5hbWUiOiJraX
N370940885.zhK5LPQd501ZUpZI0IH_qrgOXttlNbxSFFF7JOEtRls'
import requests
url = ג€https://myDNAserver/dna/intent/api/v1/network-deviceג€ payload = {} headers = {'x-auth-token': my_token} response = requests.request( _______________________ , url, headers = _________________________, data = _______________________ ) print(response.text.encode('utf8'))
Fill in the blanks to complete the Python script to retrieve a list of network devices using the Cisco DNA Center API. my_token=
'eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzl1NiJ9.ey.JzdWliOil1ZDE0OWZkMjhlZTY2
MmQ3NGM5YzE5ZTliLmYzMClslmV4cCI6MTU3MjM3ODE5MCwidXNlcm5hbWUiOiJraX
N370940885.zhK5LPQd501ZUpZI0IH_qrgOXttlNbxSFFF7JOEtRls'
import requests
url = ג€https://myDNAserver/dna/intent/api/v1/network-deviceג€ payload = {} headers = {'x-auth-token': my_token} response = requests.request( _______________________ , url, headers = _________________________, data = _______________________ ) print(response.text.encode('utf8'))