Jump to content
Updated Privacy Statement

Bradley Sadd

Members
  • Posts

    1
  • Joined

  • Last visited

Bradley Sadd's Achievements

Newbie

Newbie (1/14)

  • Week One Done
  • One Month Later
  • One Year In
  • Conversation Starter Rare
  • First Post Rare

Recent Badges

0

Reputation

  1. The issue im having is that the monitor api (https://api-eu.cloud.com/monitorodata) returns a nextlink value that appears to be a Citrix internal network address. e.g. http://f62780-38-2.prodcp5eu.local/Citrix/Monitor/odata/v4/data/Users?$skip=100 I can replicate the issue with the below python script. ----------------------- import requests web = requests.Session() baseurl = "https://api-eu.cloud.com" __token = 'xyz' __customer_id = 'zyx' web.headers = { "Authorization": "CwsAuth Bearer=" + __token, "Citrix-CustomerId": __customer_id } r = web.get( baseurl + "/monitorodata/Users") print(r.json()['@odata.nextLink'])
×
×
  • Create New...