Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

hi I am trying to use cloud api and their filter option use ==

https://vcloud/api/query?type=adminVM&filter=status==POWERED_ON

when i try

payload = {'type': 'adminVM', 'pageSize': '100', 'filter': 'status==POWERED_ON'}
r = requests.get('https://vcloud/api/query', params=payload, verify=False, headers=session, config={'encode_uri': False})

r.url is escaped

u'https://vcloud/api/query?filter=status%3D%3DPOWERED_ON&type=adminVM'

is there option to disable escaping for params since this don't work in vcloud

share|improve this question
Actually I think the behavior of the URL being escaped is correct. The server is required to correctly decode the URL. – Constantinius Jun 13 '12 at 12:53
that is the case but I can't change vmware api server – Ib33X Jun 13 '12 at 14:02

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.