Reticulated members,
I am attempting to use a GET method that is supported against the endpoint. However, I am using python and wanting to pass the user raw_input that is assigned to a variable:
uid = raw_input('Enter username: ')
payload = {'q': %s} % uid
where 'q' is the key and '%s' is the value for the query string. PS is throwing a syntax error pointing to %s.
Any suggestions please.